1. Go to any profile
2. Go to the followers page
3. Open Browser console by pressing F12 and paste the following code
4. Press Enter and you can see the follow button is being clicked
NOTE: This will automatically move to next page and continue clicking the follow button for all people in the list
var followPeople = function() {
var x = document.getElementsByClassName("button slim hollow secondary ");
var i;
var followCount = 0;
for (i = 0; i < x.length; i++) {
if (x[i].innerHTML === 'Follow') {
followCount++;
x[i].click();
}
if (i == x.length - 1) {
if (followCount == 0) {
imdNextFollow();
} else {
setTimeout(function() {
nexPage();
}, 20000);
}
}
}
}
var nexPage = function() {
setTimeout(function() {
var y = document.getElementsByClassName("button tiny hollow float-right");
y[0].click();
setTimeout(function() {
followPeople();
}, 2000);
}, 20000);
};
var imdNextFollow = function() {
var y = document.getElementsByClassName("button tiny hollow float-right");
y[0].click();
setTimeout(function() {
followPeople();
}, 2000);
};
followPeople();
Thanks for nice script can we change some code to unfollow too ?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
yep we can... will post that too in some time
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks @sundarrajan whenever you post send me the link in steemit chat :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
change this if (x[i].innerHTML === 'Follow') {
to if (x[i].innerHTML === 'Unfollow') {
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Excellent post. Now if we can get some way to automatically unfollow people who does not follow back.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
https://steemit.com/steemit/@emirk/automatically-unfollow-non-followers-on-steemit-script
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
The first box in your text is empty:
1.Open new text document and paste the following code
There is no code!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
It is showing for me, maybe it has something to do with a type of browser that is used, anyways you can copy it from here https://pastebin.com/hZGHYTFr :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
https://steemit.com/photography/@mak78/my-first-dslr-capture
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Nice post very informative
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
interesting
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Well articulated
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Good
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice information keep it up
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
So many RPC Errors you must add delay in following at least 3 seconds.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
How do I add the delay?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This code does not work
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
it does just follow instructions
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Please shoot a video of how it works
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanksful to @sundarrajan . we can interact with each other on steemit. Always welcome friends.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit