Skip to content

Instantly share code, notes, and snippets.

@deefour
Created August 12, 2018 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deefour/50efafcf2caacbbdacfbd8af6a8c039f to your computer and use it in GitHub Desktop.
Save deefour/50efafcf2caacbbdacfbd8af6a8c039f to your computer and use it in GitHub Desktop.
Subscribe to all subreddits listed within a multireddit. Go to the multireddit & paste this into the console. Increase CLICK_DELAY if reddit starts rejecting requests.
const CLICK_DELAY = 350;
const links = document.querySelectorAll('.subscription-box .subscribe-button .add.active');
[...links].forEach((el, i) => setTimeout(() => el.click(), i * CLICK_DELAY));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment