Last active
May 8, 2016 10:16
-
-
Save alcalyn/ddb13a9ea5d8afa1b573 to your computer and use it in GitHub Desktop.
Twitter filter
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
/** | |
* Filter people you are following but they are not following you. | |
* | |
* Go to: | |
* https://twitter.com/following | |
* | |
* and run: | |
*/ | |
setInterval(function(){jQuery('.FollowStatus').closest('.Grid-cell').remove()},1e3) | |
/** | |
* Filter people you are not following but they are following you. | |
* | |
* Go to: | |
* https://twitter.com/followers | |
* | |
* and run: | |
*/ | |
setInterval(function(){jQuery('.following-text:visible').closest('.Grid-cell').remove()},1e3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment