Está en la página 1de 1

function unfollowunfollowers(){

var index, users;


users=document.getElementsByClassName('ProfileCard');

for (index = 0; index < users.length; ++index) {

var followstatus=users[index].getElementsByClassName('FollowStatus');

if (followstatus.length == 0) {

var nofollowing=users[index].getElementsByClassName('not-
following');

if (nofollowing.length == 0) {
users[index].getElementsByClassName('follow-button')
[0].click();
}
}
}
}

setInterval(
function(){
$("html, body").animate({ scrollTop: $(document).height() }, "slow");
unfollowunfollowers();
}, 5000);

También podría gustarte