Skip to content

Instantly share code, notes, and snippets.

@nishantrpai
Created July 5, 2023 11:28
Show Gist options
  • Save nishantrpai/4b0253beeb240bdaf2d53b740fe986fd to your computer and use it in GitHub Desktop.
Save nishantrpai/4b0253beeb240bdaf2d53b740fe986fd to your computer and use it in GitHub Desktop.
How to unsubscribe from all subreddits:
  1. Go to https://www.reddit.com/subreddits/
  2. Go to console

Paste:

Array.from(document.querySelectorAll(`span.fancy-toggle-button.subscribe-button.toggle > a.option.active.remove.login-required`)).forEach((node, i) => setTimeout(() => { node.click(); console.log('leave node'); }, i*500));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment