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
| function fastForwardAds() { | |
| const interval = setInterval(function() { | |
| let addCounter = document.querySelectorAll('.mtv-player-ad-counter')[0] | |
| let video = document.querySelectorAll("[id^=pulseAdPlayerHTML5]")[0] | |
| if (addCounter.firstChild) { | |
| // Chrome has max playback rate 16, Firefox doesn't have limitations | |
| video.playbackRate = 16.0 |
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
| function fastForwardAds() { | |
| const interval = setInterval(function() { | |
| let video = document.querySelector('video') | |
| if (video.dataset.isad === "true") { | |
| // Chrome has max playback rate 16, Firefox doesn't have limitations | |
| video.playbackRate = 16.0 | |
| } else { | |
| video.playbackRate = 1.0 |