Skip to content

Instantly share code, notes, and snippets.

@etozzato
Last active May 12, 2023 04:58
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
how to delete all your Reddit comments
// 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