Last active
June 13, 2019 15:53
-
-
Save EnchanterIO/f7edde4d28bbbd561fb2559cd640fada to your computer and use it in GitHub Desktop.
Simple browser script to unfollow all Twitter users
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
// Open browser console | |
// Navigate to: https://twitter.com/following | |
// Scroll till end to get all the users displayed in the DOM | |
// Run: | |
$(".user-actions-follow-button").each(function() { | |
$(this).children("button.EdgeButton--primary").click() | |
}); | |
// Better than clicking 500x unfollow :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment