DOMLogger++

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

Τι είναι το DOMLogger++;

Το DOMLogger++ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kevin_mizu, και η κύρια λειτουργία του είναι "DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DOMLogger++

Λήψη αρχείων επέκτασης DOMLogger++ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
        }
    ]
}