I have this piece of code executed with greasemonkey. I don't know how to introduce a timeout for butt.click();. To be executed for exemple very 3 seconds. I've tried setTimeout(function(){butt.click();}, 3000); but doesn't work correctly
javascript:var lis = document.getElementsByTagName('li');
for(var n in lis) {
var li = lis[n];
try {
var cl = li.getAttribute('class');
if(cl == 'follow-action') {
var butt = li.getElementsByTagName('button')[0];
butt.click();
}
} catch(e) {}
}