DOMLogger++

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

¿Qué es DOMLogger++?

DOMLogger++ es una extensión de Chrome desarrollada por kevin_mizu, y su función principal es "DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión DOMLogger++

Descarga archivos de extensión DOMLogger++ en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre DOMLogger++ DOMLogger++
ID lkpfjhmpbmpflldmdpdoabimdbaclolp
URL Oficial https://chromewebstore.google.com/detail/domlogger++/lkpfjhmpbmpflldmdpdoabimdbaclolp
Descripción DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations.
Tamaño del Archivo 514 KB
Cantidad de Instalaciones 61
Versión Actual 1.0.3
Última Actualización 2023-10-24
Fecha de Publicación 2023-10-22
Desarrollador kevin_mizu
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/kevin-mizu/domloggerpp
URL de la Página de Ayuda https://github.com/kevin-mizu/domloggerpp
URL de la Página de Política de Privacidad https://mizu.re/privacy-policy/domloggerpp/PRIVACY.txt
Idiomas Soportados 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
        }
    ]
}