Skip to content

Instantly share code, notes, and snippets.

@metaist
Last active February 13, 2017 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metaist/e49e8cb83a984e36a79fe61e3e3e14a4 to your computer and use it in GitHub Desktop.
Save metaist/e49e8cb83a984e36a79fe61e3e3e14a4 to your computer and use it in GitHub Desktop.
HTML5 Video Speed Bookmarklet
javascript:(function(){ window.rate = prompt('Enter playback rate.', window.rate||1) || window.rate || 1; Array.from(document.getElementsByTagName('video')).forEach(function(d) {d.playbackRate = window.rate})})();
@metaist
Copy link
Author

metaist commented Feb 13, 2017

Create a new bookmark and put this in the location.

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