This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################################################################################################ | |
| ### ### | |
| ### 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setInterval(() => { | |
| const player = document.getElementById('movie_player'); | |
| const video = document.querySelector('video'); | |
| if (player && video && player.classList.contains('ad-showing')) { | |
| video.playbackRate = 16; | |
| } | |
| }, 50); |