DOMLogger++

DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations.

DOMLogger++ क्या है?

DOMLogger++ kevin_mizu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations."।

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

screenshot
screenshot

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

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

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

                        DOMLogger++ is a browser extension developed for web developers and security researchers. It hooks into specific JavaScript sinks, helping users understand how web scripts operate. With customizable JSON settings, users can adjust how the extension works according to their needs.

This tool is especially useful for those looking to identify security risks in web applications. By offering insights into JavaScript interactions, DOMLogger++ can help spot potential vulnerabilities in websites.

Features:

- Regex-based domain management.
- Flexible hooking configuration (class, function, attribute, event).
- Regex-based hooks arguments filtering (match, !match).
- Dynamic sinks arguments update (hookFunction).
- Customizable notifications system (alert, notification).
- On-demand debugging breakpoints.
- Integrated Devtools log panel.
- Remote logging via webhooks.
- Extensive theme customization.                    

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

नाम DOMLogger++ DOMLogger++
ID lkpfjhmpbmpflldmdpdoabimdbaclolp
आधिकारिक URL https://chromewebstore.google.com/detail/domlogger++/lkpfjhmpbmpflldmdpdoabimdbaclolp
विवरण DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations.
फ़ाइल का आकार 514 KB
स्थापना संख्या 61
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2023-10-24
प्रकाशन तिथि 2023-10-22
डेवलपर kevin_mizu
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/kevin-mizu/domloggerpp
सहायता पृष्ठ URL https://github.com/kevin-mizu/domloggerpp
गोपनीयता नीति पृष्ठ URL https://mizu.re/privacy-policy/domloggerpp/PRIVACY.txt
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DOMLogger++",
    "version": "1.0.3",
    "description": "DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations.",
    "icons": {
        "1399": "icons\/icon.png"
    },
    "action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": {
            "1399": "icons\/icon.png"
        },
        "default_title": "DOMLogger++"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "src\/options\/options.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "notifications"
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "devtools_page": "src\/devtools\/index.html",
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "src\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/bundle.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": false
        }
    ]
}