DOMLogger++

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

什么是DOMLogger++?

DOMLogger++是由kevin_mizu开发的Chrome扩展程序,该扩展的主要功能是“DOMLogger++ allows you to monitor, intercept, and debug JavaScript sinks based on customizable configurations.”。

扩展截图

screenshot
screenshot

下载DOMLogger++扩展crx文件

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