Created
August 12, 2018 13:43
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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