Last active
August 29, 2015 14:11
-
-
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!
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
| var x = document.getElementsByClassName('ytp-button-replay'); | |
| setInterval(function(){ | |
| if(x.length>0){ | |
| x[0].click(); | |
| console.log("you're welcome."); | |
| } | |
| }, 3000); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dont forget to add "javascript: " in the starting!