Created
July 25, 2018 16:47
-
-
Save dushmis/bfa5555b3b9b1027f225edab0d74b275 to your computer and use it in GitHub Desktop.
Delete All Reddit Comments Via Chrome Console
This file contains hidden or 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
$(".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