Skip to content

Instantly share code, notes, and snippets.

@krngrvr09
krngrvr09 / automatic_replay.js
Last active August 29, 2015 14:11
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);