CSP Tester

This extension helps web masters to test web application behaviour with Content Security Policy version 2.0 implemented.

O que é CSP Tester?

CSP Tester é uma extensão do Chrome desenvolvida por oxdef, e sua principal característica é "This extension helps web masters to test web application behaviour with Content Security Policy version 2.0 implemented.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CSP Tester

Baixe arquivos de extensão CSP Tester 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

                        This extension helps web masters to test web application functionality
with Content Security Policy (CSP) version 2.0 implemented.

Typical workflow looks like:

1. Open the extension window
2. Add into the URL Pattern a regular expression for the site that you want to test, for example *://yoursite.com/* (CSP Tester uses Chrome Match Patterns)
3. Tick the e.g. "self" checkbox, check "Active" and Save the changes
4. Open the Developer Tools and navigate to the tested site
5. Confirm a number of CSP violations reported in the Developer Tools Console as well as possible visual changes
6. Make changes in the policy based on these reports                    

Informações Básicas da Extensão

Nome CSP Tester CSP Tester
ID ehmipebdmhlmikaopdfoinmcjhhfadlf
URL Oficial https://chromewebstore.google.com/detail/csp-tester/ehmipebdmhlmikaopdfoinmcjhhfadlf
Descrição This extension helps web masters to test web application behaviour with Content Security Policy version 2.0 implemented.
Tamanho do Arquivo 16.61 KB
Contagem de Instalações 2,090
Versão Atual 2.1
Última Atualização 2018-10-02
Data de Publicação 2018-09-02
Classificação 3.71/5 Total de 7 Avaliações
Desenvolvedor oxdef
Tipo de Pagamento free
Site da Extensão https://oxdef.info/csp-tester
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSP Tester",
    "description": "This extension helps web masters to test web application behaviour with Content Security Policy version 2.0 implemented.",
    "version": "2.1",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "homepage_url": "https:\/\/oxdef.info\/csp-tester",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "45.0"
        }
    }
}