[FREE] Twitter Autofollow Script-BOT

in programming •  7 years ago  (edited)

Hi Everyone,

This is simple Java Script script to mass following on Twitter.

1. Go to page with followers, for example: https://twitter.com/xtina/followers

2. Press F12 in chrome, and select "Console" tab.

3. Paste below code and press Enter.

$(document).ready(function(){ 
var clickTimeout = 1000; // In miliseconds
var pageScrollTimeout = 2000; // In miliseconds
setInterval(function() { 
$("[data-test-selector='ProfileTimeline']").find(".not-following").find(".following-text").each(function(index){ 
if(index == 0) { 
$(this).click().parent().parent().parent().parent().parent().parent().parent().remove();
}
}) 
} , clickTimeout); 
setInterval(function() { 
$("html, body").scrollTop($(document).height());
}, pageScrollTimeout);
})


Speeds

You can change following speed in clickTimeout variable  e.g 

var clickTimeout = 3000; // 3 seconds, because 3 * 1000 miliseconds = 3000

pageScrollTimeout variable is responsible for scrolling the page e.g 

var pageScrollTimeout = 4000;


You are using this script at your own risk

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Congratulations @madosi! You have received a personal award!

1 Year on Steemit
Click on the badge to view your Board of Honor.

Do you like SteemitBoard's project? Then Vote for its witness and get one more award!

Congratulations @madosi! You received a personal award!

Happy Birthday! - You are on the Steem blockchain for 2 years!

You can view your badges on your Steem Board and compare to others on the Steem Ranking

Vote for @Steemitboard as a witness to get one more award and increased upvotes!