Steemit Automated Follow and UnFollow
Run this in your browser console when you are on the follower/following page
unfollow
change the Unfollow text to Follow on the follower screen of others.
You will start following all the person by automation code.
follow
in the same way change this to Unfollow on the following page.
You will start unfollowing them
code
var followFunction = function () {
var x = document.getElementsByClassName("button slim hollow secondary ");
var i;
for (i = 0; i < x.length; i++) {
if(x[i].innerHTML==='Unfollow'){
x[i].click();
}
if(i==x.length-1) {
setTimeout(function(){ nextFunction(); }, 20000);
}
}
}
var nextFunction = function () {
setTimeout(function(){
var y = document.getElementsByClassName("button tiny hollow float-right");
y[0].click();
setTimeout(function(){ followFunction(); }, 3000);
}, 10000);
};
followFunction();