Steemit Automated Follow and UnFollowsteemCreated with Sketch.

in #hack6 years ago

Run this in your browser console when you are on the follower/following page

Untitled.png

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();

we will post automated blog posting code soon.

Follow and upvote if you really like our work.

Watch this space for updates.

Coin Marketplace

STEEM 0.29
TRX 0.11
JST 0.031
BTC 67685.77
ETH 3856.07
USDT 1.00
SBD 3.69