Disable Content-Security-Policy

Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.

Co je Disable Content-Security-Policy?

Disable Content-Security-Policy je rozšíření Chrome vyvinuté Phil Grayson, a jeho hlavní funkcí je „Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Disable Content-Security-Policy

Stáhněte si soubory rozšíření Disable Content-Security-Policy 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í

                        Use at your own risk. This disables the Content-Security-Policy header for a tab. Use this when testing what resources a new third-party tag includes onto the page.

Click the extension icon to disable Content-Security-Policy header for the tab. Click the extension icon again to re-enable Content-Security-Policy header.

Use this only as a last resort. Disabling Content-Security-Policy means disabling features designed to protect you from cross-site scripting. Prefer to use report-uri which instructs the browser to send CSP violations to a URI. That allows you keep Content-Security-Policy enabled in your browser but still know what got blocked. https://report-uri.com is a free tool that gives you a web interface to inspect CSP violations on your site.                    

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

Název Disable Content-Security-Policy Disable Content-Security-Policy
ID ieelmcmcagommplceebfedjlakkhpden
Oficiální URL https://chromewebstore.google.com/detail/disable-content-security/ieelmcmcagommplceebfedjlakkhpden
Popis Disable Content-Security-Policy for web application testing. When the icon is colored, CSP headers are disabled.
Velikost souboru 23.53 KB
Počet instalací 67,011
Aktuální Verze 3.0.0
Poslední Aktualizace 2020-05-06
Datum Vydání 2020-05-06
Hodnocení 3.61/5 Celkem 80 Hodnocení
Vývojář Phil Grayson
Typ Platby free
Webové stránky Rozšíření https://github.com/PhilGrayson/chrome-csp-disable
Podporované Jazyky en,en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable Content-Security-Policy",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "version": "3.0.0",
    "author": "Phil Grayson",
    "homepage_url": "https:\/\/github.com\/PhilGrayson\/chrome-csp-disable",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "browsingData",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Content-Security-Policy headers are enabled",
        "default_icon": {
            "16": "images\/icon38-off.png"
        }
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}