Disable-CSP

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

What is Disable-CSP?

Disable-CSP is a Chrome extension developed by lisonge, and its main feature is "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy".

Extension Screenshots

screenshot

Download Disable-CSP Extension CRX File

Download Disable-CSP extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
Official URL https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Description A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
File Size 34.07 KB
Installation Count 261
Current Version 1.0.3
Last Updated 2023-09-10
Publish Date 2023-07-24
Developer lisonge
Email [email protected]
Payment Type free
Extension Website https://github.com/lisonge/Disable-CSP
Help Page URL https://github.com/lisonge/Disable-CSP/issues
Supported Languages 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"
}