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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
        }
    ]
}