Disable-CSP

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

Co je Disable-CSP?

Disable-CSP je rozšíření Chrome vyvinuté lisonge, a jeho hlavní funkcí je „A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Disable-CSP

Stáhněte si soubory rozšíření Disable-CSP ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
Oficiální URL https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Popis A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
Velikost souboru 34.07 KB
Počet instalací 261
Aktuální Verze 1.0.3
Poslední Aktualizace 2023-09-10
Datum Vydání 2023-07-24
Vývojář lisonge
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/lisonge/Disable-CSP
URL Stránky Nápovědy https://github.com/lisonge/Disable-CSP/issues
Podporované Jazyky 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"
}