Skip to content

Instantly share code, notes, and snippets.

@dpwiz
Last active August 29, 2015 14:22
Show Gist options
  • Save dpwiz/a82c2788f9c46267924d to your computer and use it in GitHub Desktop.
Save dpwiz/a82c2788f9c46267924d to your computer and use it in GitHub Desktop.
Twitter follower spam cleanup
// Open http://twitblock.org/ and scan yourself,
// then set a robot to press block buttons (gently).
var go = function() {
var btn = $(".block-button").not('.blocked').not('.error').first();
console.debug(btn.parent().find('a.screen-name > span').text());
if (btn.length) {
btn.click();
setTimeout(go, 2000);
}
}
go();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment