Skip to content

Instantly share code, notes, and snippets.

@obedparla
Created January 3, 2021 18:42
Show Gist options
  • Save obedparla/0bb822b5d78c8347f45cb182f41b26b5 to your computer and use it in GitHub Desktop.
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!
// Save this as a bookmark's URL and you're done
javascript:(function() {
document.getElementsByTagName("video")[0].playbackRate = prompt("Speed", "2.5");
})();
@obedparla
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment