Tweeter Karma – Unfollow all non-followers

Tweeter Karma is a great little tool for showing and filtering your Twitter followings and followers but apparently recently they had to remove there ‘Unfollow All’ feature at Twitter’s request. Which for some people, not a problem but if you have used one of them Twitter tools, you can have hundreds of followings and a disproportionate number of followers.

So in true hacker style I have come up with a small Javascript snippet that will unfollow everyone on the page.

All it does is look for the Unfollow links and triggers the click event. Wait a second. Repeat.

function pausecomp(ms) {
	ms += new Date().getTime();
	while (new Date() < ms){}
}
$('.twitter-users li').each(function() {
	$(this).find('div.action a').click();
	pausecomp(1000);
});

Just to make life abit easier, there is also a nice bookmarklet below, just drag it to your bookmark bar: Unfollow All

Share and Enjoy:
  • Print
  • Digg
  • StumbleUpon
  • del.icio.us
  • Facebook
  • Yahoo! Buzz
  • Twitter
  • Google Bookmarks

No related posts.

This entry was posted in Blog. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">