ZAP Browser Extension

A browser extension which allows ZAP to access the client side of a web app.

ZAP Browser Extension란 무엇입니까?

ZAP Browser Extension은(는) https://zaproxy.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension which allows ZAP to access the client side of a web app."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ZAP Browser Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ZAP is a free OSS security tool which can be used to test the security of your web apps. This browser extension will allow ZAP to gather more information about your app from the browser. Most users should not install this extension. It will be bundled in a ZAP add-on - this add-on will add the extension to Firefox/Chrome when it is launched from ZAP.                    

확장 프로그램 기본 정보

이름 ZAP Browser Extension ZAP Browser Extension
ID cloddfoknhhdcgjjiepakndnjggjajid
공식 URL https://chromewebstore.google.com/detail/zap-browser-extension/cloddfoknhhdcgjjiepakndnjggjajid
설명 A browser extension which allows ZAP to access the client side of a web app.
파일 크기 489 KB
설치 횟수 124
현재 버전 0.0.5
최근 업데이트 2023-09-14
출시 날짜 2023-09-14
개발자 https://zaproxy.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/zaproxy/browser-extension
도움말 페이지 URL https://zaproxy.org/
개인정보 보호 정책 페이지 URL https://www.zaproxy.org/faq/what-data-does-zap-collect
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ZAP Browser Extension",
    "version": "0.0.5",
    "icons": {
        "16": "assets\/icons\/zap16x16.png",
        "32": "assets\/icons\/zap32x32.png",
        "48": "assets\/icons\/zap48x48.png",
        "128": "assets\/icons\/zap128x128.png",
        "512": "assets\/icons\/zap512x512.png"
    },
    "description": "A browser extension which allows ZAP to access the client side of a web app.",
    "homepage_url": "https:\/\/github.com\/zaproxy\/browser-extension\/",
    "short_name": "ZAP",
    "permissions": [
        "tabs",
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "author": "ZAP Core Team",
    "minimum_chrome_version": "113",
    "action": {
        "default_icon": {
            "16": "assets\/icons\/zap16x16.png",
            "32": "assets\/icons\/zap32x32.png",
            "48": "assets\/icons\/zap48x48.png",
            "128": "assets\/icons\/zap128x128.png",
            "512": "assets\/icons\/zap512x512.png"
        },
        "default_title": "ZAP",
        "default_popup": "popup.html",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "js\/background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/fonts\/Roboto-Regular.ttf"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}