Skip to content

Instantly share code, notes, and snippets.

@MBRCTV
Created September 20, 2019 04:47
Show Gist options
  • Save MBRCTV/f3a20b8a56d23ebda3e4d033454ef1bd to your computer and use it in GitHub Desktop.
Save MBRCTV/f3a20b8a56d23ebda3e4d033454ef1bd to your computer and use it in GitHub Desktop.
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