Skip to content

Instantly share code, notes, and snippets.

@krngrvr09
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save krngrvr09/3acfa3aa393c4bc6cb95 to your computer and use it in GitHub Desktop.

Select an option

Save krngrvr09/3acfa3aa393c4bc6cb95 to your computer and use it in GitHub Desktop.
Paste this script in the URL Bar. Listen to your favourite song loop again and again on **Youtube**. Dont forget to add "javascript: " in the starting!
var x = document.getElementsByClassName('ytp-button-replay');
setInterval(function(){
if(x.length>0){
x[0].click();
console.log("you're welcome.");
}
}, 3000);
@krngrvr09
Copy link
Author

Dont forget to add "javascript: " in the starting!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment