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 toChrome when it is launched from ZAP.
擴展基本資訊
名稱 | ZAP Browser Extension |
ID | cnmficmodhagepcmhogkbdakncebckho |
官方網址 | https://chromewebstore.google.com/detail/zap-browser-extension/cnmficmodhagepcmhogkbdakncebckho |
簡介 | A browser extension which allows ZAP to access the client side of a web app. |
檔案大小 | 489 KB |
安裝次數 | 59 |
目前版本 | 0.0.6 |
更新時間 | 2023-09-23 |
上架時間 | 2023-09-23 |
開發者 | 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-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ZAP Browser Extension", "version": "0.0.6", "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:\/\/*\/*" ] } ] } |