Skip to content

Instantly share code, notes, and snippets.

@dushmis
Created July 25, 2018 16:47
Show Gist options
  • Save dushmis/bfa5555b3b9b1027f225edab0d74b275 to your computer and use it in GitHub Desktop.
Save dushmis/bfa5555b3b9b1027f225edab0d74b275 to your computer and use it in GitHub Desktop.
Delete All Reddit Comments Via Chrome Console
$(".togglebutton[data-event-action='delete']").each((e, x) => {
x.click()
});
var i = 0;
setInterval(e => {
$("span.option.error.active a.yes")[0].click()
console.log("deleted ", i++);
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment