I'm curious if there's a way to delete botted comments on groups

Sorry if this is the wrong section for this. But is there any way to permanently get rid of botted comments? I’ve been manually deleting them for the past hour which isn’t going to help considering the fact that there’s hundreds of pages of them. So frustrating.

If you exile a user it removes all of their posts if you select a specific option.

You could also try looking into these:

The code for both seem broken, but should be fixable in half an hour or so.

1 Like

Thank you! This helped me out a lot.

Hey, I just wrote some low IQ code that will eat up your browser resources, but it should delete all posts within a few minutes. Just paste it into console or make a TamperMonkey script.

It works best under the assumption that all of the posts are by a different person.

I highly suggest reloading the browser window after it is done because it will significantly slow down your browser due to how inefficient the code is.

(async function() {
    while (true) {
        try {
            document.getElementsByClassName("icon-more")[1].click()
        
            await new Promise((resolve) => setTimeout(resolve, 250))
            document.getElementById("delete-post").click()
        } catch {}
    }
})()
1 Like