Skip to content

Instantly share code, notes, and snippets.

@etozzato
Last active May 12, 2023 04:58
Show Gist options
  • Save etozzato/317877a52cd16c28e0344acae9c3c47e to your computer and use it in GitHub Desktop.
Save etozzato/317877a52cd16c28e0344acae9c3c47e to your computer and use it in GitHub Desktop.
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