Last active
July 11, 2017 02:15
-
-
Save madeinfree/aba1da3971b33f70f62e581eb91c7d2c to your computer and use it in GitHub Desktop.
use console log to fire youtube repeat
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
| let video = document.getElementsByClassName('html5-main-video')[0] | |
| setInterval( | |
| function() { | |
| if ((video.duration - video.currentTime) < 0.1) { | |
| video.play() | |
| } | |
| }, 500) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment