ZAP Browser Extension

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

O que é ZAP Browser Extension?

ZAP Browser Extension é uma extensão do Chrome desenvolvida por https://zaproxy.org, e sua principal característica é "A browser extension which allows ZAP to access the client side of a web app.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão ZAP Browser Extension

Baixe arquivos de extensão ZAP Browser Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome ZAP Browser Extension ZAP Browser Extension
ID cloddfoknhhdcgjjiepakndnjggjajid
URL Oficial https://chromewebstore.google.com/detail/zap-browser-extension/cloddfoknhhdcgjjiepakndnjggjajid
Descrição A browser extension which allows ZAP to access the client side of a web app.
Tamanho do Arquivo 489 KB
Contagem de Instalações 124
Versão Atual 0.0.5
Última Atualização 2023-09-14
Data de Publicação 2023-09-14
Desenvolvedor https://zaproxy.org
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/zaproxy/browser-extension
URL da Página de Ajuda https://zaproxy.org/
URL da Página de Política de Privacidade https://www.zaproxy.org/faq/what-data-does-zap-collect
Idiomas Suportados 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:\/\/*\/*"
            ]
        }
    ]
}