Skip to content

Instantly share code, notes, and snippets.

@madeinfree
Last active July 11, 2017 02:15
Show Gist options
  • Select an option

  • Save madeinfree/aba1da3971b33f70f62e581eb91c7d2c to your computer and use it in GitHub Desktop.

Select an option

Save madeinfree/aba1da3971b33f70f62e581eb91c7d2c to your computer and use it in GitHub Desktop.
use console log to fire youtube repeat
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