Skip to content

Instantly share code, notes, and snippets.

View H6LS1S's full-sized avatar
:shipit:
Focusing

Bogdan Shyrokostup H6LS1S

:shipit:
Focusing
View GitHub Profile
@cairey
cairey / unfollow.js
Created February 7, 2016 10:47
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();}});