Twitter Follow all Script




Twitter Follow all Script


This is simple jquery script for following all twitter followers. If you use this too often, you will be blocked by twitter.
In your browser open list of followers who you want to follow. Open console:
Mozilla Firefox: CTRL+Shift+K (JS)
Chrome: CTRL+Shift+J (console)
Google Chrome console
Copy and paste this code. Press enter and wait. Scroll down the list. If you want to follow fast, change parameter 1000 (ms) to your time.
jQuery('.stream .btn > span.follow-text').each(function (i, ele) 
{ ele = jQuery(ele); if (ele.css('display')!='block') 
{ console.log('vec prati:', i); return; } 
setTimeout(function () { ele.click(); }, 1000); } );
You can also unfollow all
jQuery('.stream .btn > span.following-text').each(function (i, ele) 
{ ele = jQuery(ele); if (ele.css('display')!='block') 
{ console.log('obrisan iz pracenja:', i); return; } 
setTimeout(function () { ele.click(); }, 1000); } );