Last active
July 15, 2017 11:20
-
-
Save underdown/ea3cf4cc4b35542ee947 to your computer and use it in GitHub Desktop.
twitter auto unfollow
This file contains hidden or 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
| /* | |
| Just nacigate to twitter.com/following (while logged in), hit f12 (on chrome) and paste this snippet into the console tab | |
| originally found here: http://www.easytins.com/2014/01/how-to-unfollow-many-twitter-users.html | |
| */ | |
| setInterval(function(){t= | |
| $(".following button:eq | |
| (0)");if(!t | |
| [0])window.scrollTo(0, | |
| $(document).height | |
| ());else t.trigger | |
| ("click")},100) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment