As you probably know, twitter is upgrading their interface.
Tried the following Greasemonkey script on my follower page:
__cnt__=0; jQuery('.stream button.follow-button > span.follow-text').each(function (i, ele) { ele = jQuery(ele); if (ele.css('display')!='block') {console.log('already following:', i); return;} setTimeout(function () {ele.click();}, __cnt__++*500); });
Doesn't work anymore.
Anybody know a script that does the same thing only for new twitter? i.e. follow people you are not following, skip over people you are following and have a preset time between each follow.
Tried the following Greasemonkey script on my follower page:
__cnt__=0; jQuery('.stream button.follow-button > span.follow-text').each(function (i, ele) { ele = jQuery(ele); if (ele.css('display')!='block') {console.log('already following:', i); return;} setTimeout(function () {ele.click();}, __cnt__++*500); });
Doesn't work anymore.
Anybody know a script that does the same thing only for new twitter? i.e. follow people you are not following, skip over people you are following and have a preset time between each follow.