Disable-CSP

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

Vad är Disable-CSP?

Disable-CSP är en Chrome-tillägg utvecklad av lisonge, och dess huvudfunktion är "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy".

Tilläggsskärmbilder

screenshot

Ladda ner Disable-CSP-förlängningens CRX-fil

Ladda ner Disable-CSP-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
Officiell webbadress https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Beskrivning A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
Filstorlek 34.07 KB
Antal Installationer 261
Aktuell Version 1.0.3
Senast Uppdaterad 2023-09-10
Publiceringsdatum 2023-07-24
Utvecklare lisonge
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lisonge/Disable-CSP
Hjälpsida URL https://github.com/lisonge/Disable-CSP/issues
Stödda Språk 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"
}