Created
January 3, 2021 18:42
-
-
Save obedparla/0bb822b5d78c8347f45cb182f41b26b5 to your computer and use it in GitHub Desktop.
Change the youtube's video speed to any custom value. Even above 2x!
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
| // Save this as a bookmark's URL and you're done | |
| javascript:(function() { | |
| document.getElementsByTagName("video")[0].playbackRate = prompt("Speed", "2.5"); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Save the code above as the bookmark's URL and you're done. You can change the default value from "2.5" to anything you want, or if you want always a set value, remove the
prompt("Speed", "2.5");altogether and use a set value.