Disable-CSP

A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy

O que é Disable-CSP?

Disable-CSP é uma extensão do Chrome desenvolvida por lisonge, e sua principal característica é "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Disable-CSP

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

                        A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy

In the process of website development and testing, we inevitably need to inject cross-domain resources into some websites, but Content-Security-Policy prevents this. So you can use this extension to disable Content-Security-Policy so that you have a better development experience

- disable http header csp
- disable html meta csp (must open devtools)

source code https://github.com/lisonge/Disable-CSP                    

Informações Básicas da Extensão

Nome Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
URL Oficial https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Descrição A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
Tamanho do Arquivo 34.07 KB
Contagem de Instalações 261
Versão Atual 1.0.3
Última Atualização 2023-09-10
Data de Publicação 2023-07-24
Desenvolvedor lisonge
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lisonge/Disable-CSP
URL da Página de Ajuda https://github.com/lisonge/Disable-CSP/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable-CSP",
    "version": "1.0.3",
    "author": "lisonge",
    "homepage_url": "https:\/\/github.com\/lisonge\/Disable-CSP",
    "description": "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy",
    "icons": {
        "128": "src\/assets\/icon-128.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "debugger",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "128": "src\/assets\/icon-128.png"
        }
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "devtools_page": "html\/devtools.html"
}