Last active
August 29, 2015 14:22
-
-
Save dpwiz/a82c2788f9c46267924d to your computer and use it in GitHub Desktop.
Twitter follower spam cleanup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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