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
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @madosi! You have received a personal award!
1 Year on Steemit
Click on the badge to view your Board of Honor.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @madosi! You received a personal award!
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!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit