ZAP Browser Extension
A browser extension which allows ZAP to access the client side of a web app.
ZAP Browser Extension là gì?
ZAP Browser Extension là một tiện ích mở rộng Chrome được phát triển bởi https://zaproxy.org, và tính năng chính của nó là "A browser extension which allows ZAP to access the client side of a web app.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ZAP Browser Extension
Tải xuống các tệp mở rộng ZAP Browser Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ZAP Browser Extension |
ID | cloddfoknhhdcgjjiepakndnjggjajid |
URL Chính Thức | https://chromewebstore.google.com/detail/zap-browser-extension/cloddfoknhhdcgjjiepakndnjggjajid |
Mô tả | A browser extension which allows ZAP to access the client side of a web app. |
Kích Thước Tệp | 489 KB |
Số Lần Cài Đặt | 124 |
Phiên Bản Hiện Tại | 0.0.5 |
Cập Nhật Lần Cuối | 2023-09-14 |
Ngày Phát Hành | 2023-09-14 |
Nhà Phát Triển | https://zaproxy.org |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/zaproxy/browser-extension |
URL Trang Trợ Giúp | https://zaproxy.org/ |
URL Trang Chính Sách Bảo Mật | https://www.zaproxy.org/faq/what-data-does-zap-collect |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } ] } |