Created
August 10, 2024 17:17
-
-
Save uahim/275c2c42c13cd8a2e2ff6bbfa79edc62 to your computer and use it in GitHub Desktop.
html5 video timeshift: always "play/pause" on live tv bookmarklet
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: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