Disable-CSP

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

Disable-CSPคืออะไร?

Disable-CSP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lisonge และคุณลักษณะหลักของมันคือ "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Disable-CSP

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}