Skip to content

Instantly share code, notes, and snippets.

@cairey
Created February 7, 2016 10:47
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save cairey/6634d2017e1a745de032 to your computer and use it in GitHub Desktop.
Save cairey/6634d2017e1a745de032 to your computer and use it in GitHub Desktop.
Unfollow people that do not follow you on Twitter
/* Scroll to the bottom of https://twitter.com/following
Open the Console and run the following
*/
$('.ProfileCard-content').each(function(){var status = $(this).find('.FollowStatus').text();var unfollowButton = $(this).find('.user-actions-follow-button');if(status != 'follows you'){unfollowButton.click();}});
@steventswu
Copy link

Thanks so much, @jalbam - the script you've created is amazing and so helpful!!
Thanks for keeping it updated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment