Skip to content

Instantly share code, notes, and snippets.

@alcalyn
Last active May 8, 2016 10:16
Show Gist options
  • Save alcalyn/ddb13a9ea5d8afa1b573 to your computer and use it in GitHub Desktop.
Save alcalyn/ddb13a9ea5d8afa1b573 to your computer and use it in GitHub Desktop.
Twitter filter
/**
* 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