Content Security Policy Override

Modify the Content Security Policy of web pages.

Co to jest Content Security Policy Override?

Content Security Policy Override to rozszerzenie Chrome opracowane przez https://rufflewind.com, a jego główną funkcją jest „Modify the Content Security Policy of web pages.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Content Security Policy Override

Pobierz pliki rozszerzeń Content Security Policy Override w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Content Security Policy Override Content Security Policy Override
ID lhieoncdgamiiogcllfmboilhgoknmpi
Oficjalny URL https://chromewebstore.google.com/detail/content-security-policy-o/lhieoncdgamiiogcllfmboilhgoknmpi
Opis Modify the Content Security Policy of web pages.
Rozmiar pliku 13.54 KB
Liczba instalacji 2,934
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2018-06-16
Data Publikacji 2018-06-15
Ocena 4.22/5 Łącznie 9 Oceny
Deweloper https://rufflewind.com
Typ Płatności free
Strona Rozszerzenia https://github.com/Rufflewind/chrome_cspmod
Adres URL Strony Pomocy https://github.com/Rufflewind/chrome_cspmod/issues
Obsługiwane Języki 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
    }
}