Skip to content

Instantly share code, notes, and snippets.

@101t
Created May 27, 2019 10:48
Show Gist options
  • Save 101t/ccd543aae5d3cce19e6330a41db35303 to your computer and use it in GitHub Desktop.
Save 101t/ccd543aae5d3cce19e6330a41db35303 to your computer and use it in GitHub Desktop.
Remove the following from your account using JavaScript and your browser console.

This script to unfollow the following on your Github account automatically.

[].slice.call(document.querySelectorAll('.js-toggler-target')).forEach(function(button) {
   var x = button.parentNode.getAttribute("action")
	 if(x.indexOf("/users/unfollow") > -1){console.log(x);button.click();}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment