Created
October 22, 2025 21:05
-
-
Save aciccarello/25a1b4d3f87d450830deb0d56dfa79ba to your computer and use it in GitHub Desktop.
Set video speed Bookmarklet
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
| javascript:(function setPlaybackRateInAllFrames(win){try{const mediaElements=win.document.querySelectorAll('video,audio');mediaElements.forEach(el=>{el.playbackRate=2;});}catch(e){console.warn('Could not access frame:',e);}for(const frame of Array.from(win.frames)){try{setPlaybackRateInAllFrames(frame);}catch(e){console.warn('Error accessing nested frame:',e);}}})(window); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment