Disable-CSP

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

Wat is Disable-CSP?

Disable-CSP is een Chrome-extensie ontwikkeld door lisonge, en de belangrijkste functie is "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Disable-CSP

Download Disable-CSP-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
Officiële URL https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Beschrijving A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
Bestandsgrootte 34.07 KB
Aantal Installaties 261
Huidige Versie 1.0.3
Laatst Bijgewerkt 2023-09-10
Publicatiedatum 2023-07-24
Ontwikkelaar lisonge
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/lisonge/Disable-CSP
Help Pagina-URL https://github.com/lisonge/Disable-CSP/issues
Ondersteunde Talen 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"
}