Skip to content

Instantly share code, notes, and snippets.

@wildeyes
Created October 1, 2019 11:14
Show Gist options
  • Select an option

  • Save wildeyes/ab6bf5dafc1e67f12663976d43118063 to your computer and use it in GitHub Desktop.

Select an option

Save wildeyes/ab6bf5dafc1e67f12663976d43118063 to your computer and use it in GitHub Desktop.
Medium Userscripts
// 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