Reddit Nuker - Clean Out Your Reddit

Delete Reddit comments in bulk

Reddit Nuker - Clean Out Your Reddit क्या है?

Reddit Nuker - Clean Out Your Reddit Kenny Chen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Delete Reddit comments in bulk"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reddit Nuker - Clean Out Your Reddit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Nuke your Reddit post and comment history!

Reddit doesn't allow bulk actions, so this extension makes it easy for you to mass delete all your posts and comments. Reddit Nuker is completely free to use and can hopefully save you some time and energy. Your information is not stored; feel free to inspect the source code here: https://github.com/kennybc/reddit-nuker

Reddit Nuker does enforce a 60 second cooldown per 100 deletions to comply with Reddit API's request rate limits.

Please note that this is a pet project and may have some bugs and fairly limited functionality. With that said, your patience and understanding is greatly appreciated.

How it works:
1. Reddit Nuker requires that you are logged into Reddit first.
2. Then, it will scrape some user info from the browser (just your username and a key that allows us access to make requests on your behalf). That info is not saved, so this scrape will happen with every time you use Reddit Nuker.
3. Using your username and that key (modhash), Reddit Nuker loops through your comments/posts and makes requests to Reddit's API to delete each one.
4. You can abort mid-process, but the full cooldown (60 seconds) will still be enforced.

Changelogs:
v.1.2:
- script now automatically reruns every 100 requests (previously required manual rerun)
- script now runs in background; will not be interrupted if extension popup is closed
- added more accurate rate limiting and logging to reflect it
- added an "info/usage" tooltip for some basic stat tracking (requested feature)
- added a license and made open-source for better transparency                    

एक्सटेंशन की मूल जानकारी

नाम Reddit Nuker - Clean Out Your Reddit Reddit Nuker - Clean Out Your Reddit
ID efnhgmeeeojdmpbigdbdpjfjfanhipio
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-nuker-clean-out-yo/efnhgmeeeojdmpbigdbdpjfjfanhipio
विवरण Delete Reddit comments in bulk
फ़ाइल का आकार 15.61 KB
स्थापना संख्या 400
वर्तमान संस्करण 1.2
अंतिम अपडेट 2024-01-21
प्रकाशन तिथि 2023-12-27
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Kenny Chen
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Reddit Nuker - Clean Out Your Reddit",
    "description": "Delete Reddit comments in bulk",
    "version": "1.2",
    "icons": {
        "128": "icon.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "128": "icon.png"
        }
    },
    "host_permissions": [
        "https:\/\/*.reddit.com\/*"
    ],
    "permissions": [
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}