Last active
March 1, 2024 07:31
-
-
Save 4lun/898492d15722c9e10835 to your computer and use it in GitHub Desktop.
Unsubscribe from all subreddits
This file contains 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
// Visit https://www.reddit.com/subreddits/ and run the following in console (browser dev tools) | |
// Wait until all the buttons have visibly toggled, refresh page to confirm. | |
$('.fancy-toggle-button .remove').each(function(i, elem) { setTimeout(function(){ $(elem).trigger('click'); }, i*500) }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We came out with the same thing haha.