Bulk Delete Reddit Posts & Comments History

This extension allows you to bulk/mass delete your post, comment & message history from Reddit.

Was ist Bulk Delete Reddit Posts & Comments History?

Bulk Delete Reddit Posts & Comments History ist eine Chrome-Erweiterung, die von Glen Chiacchieri entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to bulk/mass delete your post, comment & message history from Reddit.".

Erweiterungsscreenshots

screenshot
screenshot

Bulk Delete Reddit Posts & Comments History-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bulk Delete Reddit Posts & Comments History-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Nuke your Reddit history! This extension lets you mass delete your Reddit comments, posts, and messages. It gives you 4 simple buttons — Delete comments, Delete posts, Delete both comments and posts, or Delete messages — that automatically delete your Reddit content in one go.

After you install the extension, a screen with deletion options will appear. A confirmation screen is shown before the deleting process starts. Then just leave the browser tab open and let it work. Unlike a script, it deletes everything automatically.

🌟 “Worth the money. I deleted everything in about 15 minutes. Thanks. Exactly as advertised.” – Reviewer. Trusted by thousands of users.

By default, there is a limit of 50 deletions per day. For a small one-time payment that buys lifetime access to the extension on any browser, you can delete without any limits. This is to make the extension worthwhile to update and maintain. Making good extensions is hard work! We hope you'll understand. 🥺

Note: this extension does not read, store, or transmit your Reddit or other browsing data in any form. The extension needs permission to access extensionpay.com to manage your paid features, but no information is shared with this site.

Chrome version: https://chrome.google.com/webstore/detail/bulk-delete-reddit-posts/nbfdoajmaaohkohdnbpjakamhcaaleco?hl=en&authuser=0 
Firefox version: https://addons.mozilla.org/en-US/firefox/addon/bulk-delete-reddit-history/
Edge version: https://microsoftedge.microsoft.com/addons/detail/bulk-delete-reddit-posts-/aadcpdagapcmcpjainhaejocmlpjniid 

Changelog:

v2.3: Added links to delete “top” and “controversial” posts after “all” posts are deleted because Reddit treats these differently for some reason.
v2.2: Added “Delete messages” button that deletes all messages you’ve received.
v2.1: Added support for deleting “controversial” comments, which Reddit separates from “all” comments for some reason.
v2.0: Minor text change to make things clearer.
v1.9: Fixed an error introduced in v1.8 that only deleted “top” comments and not “all”. Now, by default, “all” comments are deleted first and after that there’s a button that can open the “top” comments page for further deletion.
v1.8: Finally fixed a bug that a small number of users were getting where “top” comments weren’t being deleted. Now all comments should be deleted correctly for all users.
v1.6-1.7: Minor improvements to usability, including a bug which caused the extension to open unexpectedly after updates.
v1.5: Fixed a bug for Firefox that caused the extension to not work after paying. Also network errors are now detected.
v1.2-1.4: After payment, the extension will now refresh immediately to show you’ve paid.
v1.1: Fixed a bug that halted deletion after just one page. Now all comments and posts are deleted fully without needing to restart the process.

Please consider leaving a review! Many reviewers try the extension once, there's a bug, they leave a bad review, the extension is fixed, and then they never update their review, leaving other potential users with a mistaken impression. Your review would help correct this which would help many people, including me. Thanks!                    

Grundlegende Informationen zur Erweiterung

Name Bulk Delete Reddit Posts & Comments History Bulk Delete Reddit Posts & Comments History
ID nbfdoajmaaohkohdnbpjakamhcaaleco
Offizielle URL https://chromewebstore.google.com/detail/bulk-delete-reddit-posts/nbfdoajmaaohkohdnbpjakamhcaaleco
Beschreibung This extension allows you to bulk/mass delete your post, comment & message history from Reddit.
Dateigröße 42.19 KB
Installationsanzahl 7,000
Aktuelle Version 2.3
Letztes Update 2024-01-26
Veröffentlichungsdatum 2023-06-12
Bewertung 4.08/5 Insgesamt 60 Bewertungen
Entwickler Glen Chiacchieri
E-Mail [email protected]
Zahlungsart in_app
URL der Datenschutzrichtlinien-Seite https://docs.google.com/document/d/11M3b31iN058mZzr45dLKRxE9Xd7bAb7-8iTu1ZjYIf0/edit?usp=sharing
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bulk Delete Reddit Posts & Comments History",
    "description": "This extension allows you to bulk\/mass delete your post, comment & message history from Reddit.",
    "version": "2.3",
    "manifest_version": 3,
    "icons": {
        "16": "src\/assets\/icons\/icon16.png",
        "32": "src\/assets\/icons\/icon32.png",
        "48": "src\/assets\/icons\/icon48.png",
        "128": "src\/assets\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/index.ts-loader.cce2736a.js"
            ],
            "matches": [
                "https:\/\/old.reddit.com\/user\/*\/*?delete_all*",
                "https:\/\/old.reddit.com\/user\/*\/*?delete_all_confirmed*"
            ],
            "css": [
                "assets\/index.dd7021b7.css",
                "assets\/styles.384167f3.css"
            ]
        },
        {
            "js": [
                "assets\/messages.ts-loader.303eba5a.js"
            ],
            "matches": [
                "https:\/\/old.reddit.com\/message\/messages*?delete_all*"
            ],
            "run_at": "document_start",
            "css": [
                "assets\/messages.dd7021b7.css",
                "assets\/styles.384167f3.css"
            ]
        },
        {
            "js": [
                "assets\/onpaid.ts-loader.74c29c4e.js"
            ],
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "options_ui": {
        "page": "src\/options\/options.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": {
            "16": "src\/assets\/icons\/icon16.png",
            "32": "src\/assets\/icons\/icon32.png",
            "48": "src\/assets\/icons\/icon48.png",
            "128": "src\/assets\/icons\/icon128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/old.reddit.com\/*",
                "https:\/\/old.reddit.com\/*"
            ],
            "resources": [
                "assets\/index.0c9e7984.js",
                "assets\/ExtPay.module.1a23e58e.js",
                "assets\/index.ts.f00c79b1.js"
            ],
            "use_dynamic_url": true
        },
        {
            "matches": [
                "https:\/\/old.reddit.com\/*"
            ],
            "resources": [
                "assets\/index.0c9e7984.js",
                "assets\/ExtPay.module.1a23e58e.js",
                "assets\/messages.ts.9b3d679e.js"
            ],
            "use_dynamic_url": true
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "resources": [
                "assets\/ExtPay.module.1a23e58e.js",
                "assets\/onpaid.ts.c00bb059.js"
            ],
            "use_dynamic_url": true
        }
    ]
}