Was tiered of clicking unfollow button and do not wanted to use third party websites to unfollow everyone on Tumblr.
Wrote a script... A dumb script that unfollow everyone..
What's needed?
Open Chrome browser and install any plugin that injects JS script. I used "
Custom JavaScript for websites - Chrome Web Store" (CJS) can be downloaded in Chrome's plugin depo.
after that open it on Tumbr page with guys to unfollow and run script in CJS
I used timeouts for beginning of JS after page loads(3000ms) - that will give time to stop it in CJS and timeouts for unfollowing (500ms) - to make it more stable.
I tried to make it less but it sometimes do not work.
Well. You launch that script in Chrome and wait =)
Wrote a script... A dumb script that unfollow everyone..
What's needed?
Open Chrome browser and install any plugin that injects JS script. I used "
Custom JavaScript for websites - Chrome Web Store" (CJS) can be downloaded in Chrome's plugin depo.
after that open it on Tumbr page with guys to unfollow and run script in CJS
jQuery( document ).ready(function() {
setTimeout(function() {
console.log("Unfollow");
var amount = jQuery('.unfollow_button').length;
if (amount >0) {
for (i = 0; i < amount ; i++) {
setTimeout(function() {
jQuery( ".unfollow_button" ).click();
}, 500);
setTimeout(function() {
jQuery('.btn_1').click();
}, 500);
}
setTimeout(function() {
location.reload();
}, 500);
}
else {};
}, 3000);
});
setTimeout(function() {
console.log("Unfollow");
var amount = jQuery('.unfollow_button').length;
if (amount >0) {
for (i = 0; i < amount ; i++) {
setTimeout(function() {
jQuery( ".unfollow_button" ).click();
}, 500);
setTimeout(function() {
jQuery('.btn_1').click();
}, 500);
}
setTimeout(function() {
location.reload();
}, 500);
}
else {};
}, 3000);
});
I used timeouts for beginning of JS after page loads(3000ms) - that will give time to stop it in CJS and timeouts for unfollowing (500ms) - to make it more stable.
I tried to make it less but it sometimes do not work.
Well. You launch that script in Chrome and wait =)