Bulk Delete Reddit Posts & Comments History

This extension allows you to bulk delete all your post, comment, and message history from Reddit.

Total ratings

3.03 (Rating count: 29)

Review summary

These summaries are automatically generated weekly using AI based on recent user reviews. Firefox Browser Add-ons does not verify user reviews, so some user reviews may be inaccurate, spammy, or outdated.
Pros
  • Works as intended for bulk deleting posts/comments
  • One-time payment for lifetime use
  • Quick and painless deletion process
  • Good alternative to the now dead 'Nuke Reddit History' extension
Cons
  • Limited to 50 deletions at a time without payment
  • Some users reported not functioning properly post-update
  • Raising the price from $8 to $10 disappointed some users
  • Issues with extension permissions and access
Most mentioned
  • Limit of 50 deletions without payment
  • Concerns regarding the pricing and value
  • Functionality issues or errors reported by users
  • Satisfaction with the product's performance when working
See reviews for Bulk Delete Reddit Posts & Comments History on Firefox Browser Add-ons
Upgrade to see all 29 reviews

User reviews

Recent rating average: 2.90
All time rating average: 3.03
Upgrade to see all 29 reviews

Rating filters

5 star
38% (11)
4 star
0%
3 star
14% (4)
2 star
7% (2)
1 star
41% (12)
Date Author Rating Comment
2024-12-01 Firefox user 18228797
2024-11-26 Easy Really... $10 for something I could do (and did) in 3 lines of code? Price is very disproportionate to the value here.
2024-05-13 Firefox user 18412067 This isn't worth anywhere near $10.
2024-04-21 Firefox user 18381892 Does what it claims, a very helpful replacement of the now dead 'Nuke Reddit History' extension. Worth the one off fee for lifetime use (I purge my history pretty regularly so I'm happy to pay for it). A lot of the bad reviews here are just people who sound very entitled whining about the fact that a product someone created does in fact cost money.
2024-03-16 Firefox user 11608340 Not 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); \\\
2024-02-24 Waterfox1000 It works as intended. Yes there's a 50 limit, but rating it 1 star because of that is absurd. App developers have to eat too. On the otherhand, I can see why they'd be upset since the screenshots don't show the limitation and nobody reads the description.
2024-02-21 CherryChef It deletes 50 comments at a time, still quite fast. I understand the need for a paywal, as it likely to some time to create.
2024-02-20 Firefox user 15195126 read the desc. up to 50 free deletions per day.
2024-02-18 Firefox user 15524226 Easy deleting of your Reddit contributions. The one time fee is reasonable and the deletion is quick and painless. If you don't want Reddit using your input for big data, this is the extension to get.
2024-02-18 Firefox user 16641827 Do 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); ```
Upgrade to see all 29 reviews