Created
September 20, 2019 04:47
-
-
Save MBRCTV/f3a20b8a56d23ebda3e4d033454ef1bd to your computer and use it in GitHub Desktop.
This file contains 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
javascript:( | |
function() { | |
var pb; | |
pb = document.getElementsByTagName("video")[0]; | |
var speed; | |
speed = prompt('Playback Speed? (Current Speed: ' + pb.playbackRate + ')'); | |
if(speed > 0) { | |
pb.playbackRate = speed; | |
} | |
} | |
)(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment