Last active
July 12, 2021 06:25
-
-
Save captn3m0/ba2166c0f7c811f40c409744d19abc59 to your computer and use it in GitHub Desktop.
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
| The first reduces speed to 0.75x of current: | |
| javascript:(function()%7BArray.from(document.getElementsByTagName('video')).forEach(vid%20%3D%3E%20vid.playbackRate%20*%3D0.75)%3B%7D()) | |
| The second increases speed to 1.25x of current: | |
| javascript:(function()%7BArray.from(document.getElementsByTagName('video')).forEach(vid%20%3D%3E%20vid.playbackRate%20*%3D%201.25)%3B%7D()) | |
| You can press multiple times to get where you want. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment