I wrote a tampermokey script that counts the i
intervals and clicks the next video, but the odd thing is it works only if the alert
is uncommented:
var i = 1;
setInterval(function () {
document.getElementsByClassName('PlaylistVideo')[i].click();
// alert("i is equal to: "+ i);
i ++
}, 5000);