Disable-CSP

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

什么是Disable-CSP?

Disable-CSP是由lisonge开发的Chrome扩展程序,该扩展的主要功能是“A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy”。

扩展截图

screenshot

下载Disable-CSP扩展crx文件

下载Disable-CSP扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
官方URL https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
简介 A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
文件大小 34.07 KB
安装次数 261
当前版本 1.0.3
更新时间 2023-09-10
上架时间 2023-07-24
开发者 lisonge
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/lisonge/Disable-CSP
帮助页面URL https://github.com/lisonge/Disable-CSP/issues
支持的语言 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"
}