Anti Anti Debug

Be able to use developer tools again

Anti Anti Debug क्या है?

Anti Anti Debug Andrew S द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Be able to use developer tools again"।

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

screenshot

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

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

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

                        Allows you to use developer tools on websites which utilize anti-debug techniques such as:

1. Repeated calls to debugger
2. getter traps
3. Console.clear() spam

What it does:

1. console.clear and console.table are set to do nothing.
2. console.log is overridden to filter DOM elements, functions, and objects with custom getters
3. Functions containing debugger calls are removed
4. setInterval checks for anti debugging scripts

Troubleshooting Tips:

1. Open devtools in new window, otherwise sites may detect using viewport width/height information
2. Disable source maps in devtools. Some sites will detect when source maps are automatically loaded through the devtools
3. Open devtools first, and then navigate to the site

Please report any issues to the Github:
https://github.com/Andrews54757/Anti-Anti-Debug/issues

This extension may break some websites which rely on certain specific logging tools. It is recommended to enable the extension only when needed.

Debug icons created by Alfian Dwi Hartanto - Flaticon                    

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

नाम Anti Anti Debug Anti Anti Debug
ID mnmnmcmdkigakhlfkcdimghndnmomfeo
आधिकारिक URL https://chromewebstore.google.com/detail/anti-anti-debug/mnmnmcmdkigakhlfkcdimghndnmomfeo
विवरण Be able to use developer tools again
फ़ाइल का आकार 14.59 KB
स्थापना संख्या 942
वर्तमान संस्करण 1.0.6
अंतिम अपडेट 2023-12-29
प्रकाशन तिथि 2023-02-03
रेटिंग 4.42/5 कुल 12 रेटिंग्स
डेवलपर Andrew S
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Andrews54757/Anti-Anti-Debug
सहायता पृष्ठ URL https://github.com/Andrews54757/Anti-Anti-Debug/issues
गोपनीयता नीति पृष्ठ URL https://gist.github.com/Andrews54757/5e5ed6fec4d431b3630150d96bd73769
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Anti Anti Debug",
    "description": "Be able to use developer tools again",
    "version": "1.0.6",
    "author": "Andrew S",
    "icons": {
        "16": "debug-16.png",
        "48": "debug-48.png",
        "128": "debug-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [],
    "web_accessible_resources": [
        {
            "resources": [
                "content.js",
                "anti-anti-debug.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "anti-anti-debug@andrews",
            "strict_min_version": "109.0"
        }
    }
}