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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension which allows ZAP to access the client side of a web app."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ZAP Browser Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 toChrome when it is launched from ZAP.
एक्सटेंशन की मूल जानकारी
नाम | ZAP Browser Extension |
ID | cnmficmodhagepcmhogkbdakncebckho |
आधिकारिक URL | 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:\/\/*\/*" ] } ] } |