Skip to content

Instantly share code, notes, and snippets.

@4lun
4lun / reddit-unsubscribe-all-subreddits.js
Last active March 1, 2024 07:31
Unsubscribe from all subreddits
// 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) });