nemsis
Junior Member
- Sep 27, 2009
- 197
- 294
This is a little javascript code that will click on all these "unfollow" links on twitter karma.
Step 1: Go to twitter karma
Step 2 : Select "Only Following"
Step 3 : Paste this javascript code in your browser's location bar
Step 4 : Press the thanks button 
Step 1: Go to twitter karma
Code:
http://dossy.org/twitter/karma/
Step 3 : Paste this javascript code in your browser's location bar
Code:
javascript: /* nemsis 4 bhw */ function tr_unf() { var unfollowlinks = []; for (var i=0; i < document.links.length; i++) {if (document.links[i].text=="unfollow"){unfollowlinks[unfollowlinks.length] = document.links[i];}} /* nemsis 4 bhw */ for (var i=0; i<unfollowlinks.length; i++) {var rrr=unfollowlinks[i].onclick();} } tr_unf();