Content Security Policy Override

Modify the Content Security Policy of web pages.

Co je Content Security Policy Override?

Content Security Policy Override je rozšíření Chrome vyvinuté https://rufflewind.com, a jeho hlavní funkcí je „Modify the Content Security Policy of web pages.“.

Snímky obrazovky rozšíření

screenshot

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

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

                        Allows the user to modify the Content Security Policy (CSP) of web pages.

Warning: improper use of this add-on can diminish the security of your browser. Do not use unless you really know what you're doing.

To edit the configuration, go to chrome://extensions and click Options under Content Security Policy Override.

The text area in the Options will automatically save as you edit.

Bugs should be reported here: https://github.com/Rufflewind/chrome_cspmod/issues                    

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

Název Content Security Policy Override Content Security Policy Override
ID lhieoncdgamiiogcllfmboilhgoknmpi
Oficiální URL https://chromewebstore.google.com/detail/content-security-policy-o/lhieoncdgamiiogcllfmboilhgoknmpi
Popis Modify the Content Security Policy of web pages.
Velikost souboru 13.54 KB
Počet instalací 2,934
Aktuální Verze 1.2.0
Poslední Aktualizace 2018-06-16
Datum Vydání 2018-06-15
Hodnocení 4.22/5 Celkem 9 Hodnocení
Vývojář https://rufflewind.com
Typ Platby free
Webové stránky Rozšíření https://github.com/Rufflewind/chrome_cspmod
URL Stránky Nápovědy https://github.com/Rufflewind/chrome_cspmod/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.2.0",
    "name": "Content Security Policy Override",
    "description": "Modify the Content Security Policy of web pages.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}