Last active
May 12, 2023 04:58
-
-
Save etozzato/317877a52cd16c28e0344acae9c3c47e to your computer and use it in GitHub Desktop.
how to delete all your Reddit comments
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
// Go to your comment listing https://old.reddit.com/user/user_name/comments/ | |
// Open the dev console and run this one-liner. | |
// Reload the page and run again as needed! | |
// Don't click on [next >] pagination button | |
document.querySelectorAll('form.toggle.del-button a:not(.no)').forEach(function(el,idx){setTimeout(function(){el.click()},idx*555)}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment