Created
March 29, 2020 06:02
-
-
Save prozacgod/0dc62eaa9535734aadacd130bea1da24 to your computer and use it in GitHub Desktop.
Use this bookmarklet to speed up embedded videos
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
I normally create a bookmarklet "Scripts" folder in chrome toolbar, and then add these as labelled. | |
1.0 | |
javascript:(function(){document.getElementsByTagName('video')[0].playbackRate=1.0})(); | |
1.5 | |
javascript:(function(){document.getElementsByTagName('video')[0].playbackRate=1.5})(); | |
2.0 | |
javascript:(function(){document.getElementsByTagName('video')[0].playbackRate=2.0})(); | |
2.5 | |
javascript:(function(){document.getElementsByTagName('video')[0].playbackRate=2.5})(); | |
Adjust however you'd like. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment