Skip to content

Instantly share code, notes, and snippets.

@talhashraf
Last active July 3, 2018 08:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talhashraf/8820945 to your computer and use it in GitHub Desktop.
Save talhashraf/8820945 to your computer and use it in GitHub Desktop.
How to unfollow all of your twitter followers in few minutes? Here is the solution. Cheers!
/*
Steps to unfollow:
------------------
1. Load all of your twitter followers by scrolling down.
2. Run the below "Minified Version" of "unfollow.js" in browser's console.
*/
// Minified Version
$(".user-actions-follow-button.js-follow-btn.follow-button.btn").each(function(){$(this).click();});
// Beautified Version
$(".user-actions-follow-button.js-follow-btn.follow-button.btn").each(function () {
$(this).click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment