36 reviews
- Rated 1 out of 5
Developer response
posted a month ago - Rated 4 out of 5
- Rated 1 out of 5paid for the plugin but it's not actually fully deleting. The old reddit interface shows deleted but the new UI still shows comments even on mobile. Definitely needs some work. Would be nice if it could use the new design as there's clearly a difference in how data is pulled.
What's weird is if you open your profile in a private window they go away. But if you log in with no cache they come back. Maybe there needs to be a different check the plugin does to make sure that data is actually wiped out, I do see it coming back in the reddit api so I'm pretty confused what the heck reddit is even doing there.
Update: Definitely didn't remove anything older than ~3 months old. The old reddit layout is broken and just doesn't show so of course the plugin doesn't work since it's just running a few lines of js. It needs to use the new reddit design.Developer response
posted a month ago - Rated 5 out of 5
- Rated 5 out of 5
- Rated 5 out of 5
- Rated 1 out of 5
- Rated 1 out of 5
- Rated 2 out of 5
- Rated 1 out of 5
Developer response
posted 5 months ago - Rated 5 out of 5
- Rated 3 out of 5Not payed for it, used this script in the console to delete more than 50 comments.
Delete button after it's done deleting hit F12, Ctrl+R to refresh the page Ctrl+V for the code hit enter Ctrl+R after done repeat ad nauseam:
\\\
let intervalId = setInterval(() => {
try {
const deleteButton = document.querySelector('a.togglebutton[data-event-action="delete"]');
const changeStateButtons = document.querySelectorAll('a.yes[onclick*="change_state"]');
console.log('Delete button:', deleteButton);
console.log('Change state buttons:', changeStateButtons);
if (deleteButton && changeStateButtons.length >= 2) {
deleteButton.click();
changeStateButtons[0].click();
changeStateButtons[1].click();
} else {
console.error('Elements not found or not enough change state buttons');
clearInterval(intervalId);
}
} catch (error) {
console.error('An error occurred:', error);
clearInterval(intervalId);
}
}, 500);
\\\ - Rated 5 out of 5
- Rated 5 out of 5
- Rated 1 out of 5
- Rated 5 out of 5
- Rated 1 out of 5Do not pay for this its manually limited to take your money. Simply run this code in the console then refresh and repeat:
```js
let intervalId = setInterval(() => {
try {
document.querySelector('a.togglebutton[data-event-action="delete"]').click();
document.querySelector('a.yes[onclick*="change_state"]').click();
document.querySelector('a.yes[onclick*="change_state"]').click();
} catch (error) {
console.error('Done this page of comments');
clearInterval(intervalId); // Stop the infinite loop
}
}, 500);
``` - Rated 5 out of 5
- Rated 4 out of 5
- Rated 1 out of 5
- Rated 1 out of 5
- Rated 5 out of 5
- Rated 5 out of 5