Created
October 1, 2019 11:14
-
-
Save wildeyes/ab6bf5dafc1e67f12663976d43118063 to your computer and use it in GitHub Desktop.
Medium Userscripts
This file contains hidden or 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
| // run this in dev console | |
| // copied from https://www.quora.com/How-can-I-unfollow-everyone-on-Medium | |
| var button = document.getElementsByTagName("button"); | |
| for (var i = 0; i < button.length; i++) | |
| { | |
| if(button[i].className.includes("js-followButton")) | |
| { button[i].click(); } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment