Skip to content

Instantly share code, notes, and snippets.

@uahim
Created August 10, 2024 17:17
Show Gist options
  • Save uahim/275c2c42c13cd8a2e2ff6bbfa79edc62 to your computer and use it in GitHub Desktop.
Save uahim/275c2c42c13cd8a2e2ff6bbfa79edc62 to your computer and use it in GitHub Desktop.
html5 video timeshift: always "play/pause" on live tv bookmarklet
javascript:var vid = document.getElementsByTagName("video")[0];vid.paused == false ? vid.pause() : vid.play();void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment