Skip to content

Instantly share code, notes, and snippets.

################################################################################################################
### ###
### WARNING: This file is automatically generated DO NOT modify this file directly as it will be overwritten ###
### ###
################################################################################################################
<#
.NOTES
Author : Chris Titus @christitustech
Runspace Author: @DeveloperDurp
GitHub : https://github.com/ChrisTitusTech
@GabiNun
GabiNun / content.js
Created December 30, 2025 05:13
Extension
setInterval(() => {
const player = document.getElementById('movie_player');
const video = document.querySelector('video');
if (player && video && player.classList.contains('ad-showing')) {
video.playbackRate = 16;
}
}, 50);