Skip to content

Instantly share code, notes, and snippets.

@cactis
Forked from cairey/unfollow.js
Created July 21, 2017 12:28
Show Gist options
  • Save cactis/fbca4f5e6e0503c280181fa85a8812aa to your computer and use it in GitHub Desktop.
Save cactis/fbca4f5e6e0503c280181fa85a8812aa 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();}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment