Disable-CSP

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

Co to jest Disable-CSP?

Disable-CSP to rozszerzenie Chrome opracowane przez lisonge, a jego główną funkcją jest „A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Disable-CSP

Pobierz pliki rozszerzeń Disable-CSP 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
Oficjalny URL https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Opis A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
Rozmiar pliku 34.07 KB
Liczba instalacji 261
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2023-09-10
Data Publikacji 2023-07-24
Deweloper lisonge
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lisonge/Disable-CSP
Adres URL Strony Pomocy https://github.com/lisonge/Disable-CSP/issues
Obsługiwane Języki 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"
}