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.」です。
拡張機能のスクリーンショット
ZAP Browser Extension拡張機能のCRXファイルをダウンロード
ZAP Browser Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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:\/\/*\/*" ] } ] } |