Disable-CSP

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

Hvad er Disable-CSP?

Disable-CSP er en Chrome-udvidelse udviklet af lisonge, og dens hovedfunktion er "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy".

Udvidelsesskærmbilleder

screenshot

Download Disable-CSP-udvidelses-CRX-fil

Download Disable-CSP-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
Officiel URL https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Beskrivelse A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
Filstørrelse 34.07 KB
Antal Installationer 261
Nuværende Version 1.0.3
Senest Opdateret 2023-09-10
Udgivelsesdato 2023-07-24
Udvikler lisonge
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/lisonge/Disable-CSP
Hjælpeside-URL https://github.com/lisonge/Disable-CSP/issues
Understøttede Sprog 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"
}