Skip to content

Instantly share code, notes, and snippets.

@adiog
Last active October 24, 2017 08:25
Show Gist options
  • Save adiog/f10828d2d286dab21e150e478ef87cae to your computer and use it in GitHub Desktop.
Save adiog/f10828d2d286dab21e150e478ef87cae to your computer and use it in GitHub Desktop.
Simple bookmarklet bumping the playback speed (on YT/vimeo/others)
javascript:(function(){(Array.from(document.body.getElementsByTagName('video'))).forEach(function(videoDom){if(videoDom.playbackRate==1.0){videoDom.playbackRate=3.0;}else{videoDom.playbackRate=1.0;}});})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment