Last active
July 3, 2018 08:38
-
-
Save skynetbinary/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!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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