Skip to content

Instantly share code, notes, and snippets.

@captn3m0
Last active July 12, 2021 06:25
Show Gist options
  • Select an option

  • Save captn3m0/ba2166c0f7c811f40c409744d19abc59 to your computer and use it in GitHub Desktop.

Select an option

Save captn3m0/ba2166c0f7c811f40c409744d19abc59 to your computer and use it in GitHub Desktop.
Video Speed Bookmarklet
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