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
官方網址 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"
}