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) }); |