What's this you ask?
Well, it's a little piece of javascript to make your day a little bit easier.
- Go to http://unfollowerstats.com
- Log in using your Twitter account
- Go to the Non-Followback section (ink in the left menu)
- Open the developer tools in you browser
- Paste this script in the console and hit return
var buttons = $(".followingButton"),
interval = setInterval(function(){
var btn = $(buttons.splice(0, 1));
btn.click();
if (buttons.length === 0) {
clearInterval(interval);
}
}, 500);
It'll only do the current page so you have to change page and restart the script again manually. Quick and simple!
The other way round works also with the I-Dont-Followback section.
var buttons = $(".followButton"),
interval = setInterval(function(){
var btn = $(buttons.splice(0, 1));
btn.click();
if (buttons.length === 0) {
clearInterval(interval);
}
}, 500);
I eventually made this into a Chrome extension: https://recycledrobot.co.uk/extensions/unfollowerstats/