Skip to content

Instantly share code, notes, and snippets.

@bcruddy
Last active March 2, 2017 08:12
Show Gist options
  • Save bcruddy/0e997f144120d4c93255e298760fd986 to your computer and use it in GitHub Desktop.
Save bcruddy/0e997f144120d4c93255e298760fd986 to your computer and use it in GitHub Desktop.
/*
* javascript to unsubscribe from all default subs
* navigate to https://www.reddit.com/subreddits and then copy/paste the below snippet in the console
* Tested in chrome 56, minimum browser reqs:
* https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#AutoCompatibilityTable
* http://caniuse.com/#feat=arrow-functions
*/
document.querySelectorAll('a.option.remove').forEach(a => a.click())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment