CSP Unblock

No more Content-Security-Policy limitations. This extension removes all CSP-related headers during website testing.

CSP Unblockคืออะไร?

CSP Unblock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย balvin.perrie และคุณลักษณะหลักของมันคือ "No more Content-Security-Policy limitations. This extension removes all CSP-related headers during website testing."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย CSP Unblock ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension removes the following CSP-related response headers to remove limitations caused by CSP.

1. "content-security-policy" header
2. "content-security-policy-report-only" header
3. "x-webkit-csp" header
4. "x-content-security-policy" header

Use Cases:
1. This extension can temporarily remove the limitations of CSP so that the developer can test inline and remote scripts. Also, you can load different cross-origin resources without any limitation.
2. Allow a website to load a remote worker script
3. Allow a website to play remote media

Notes:
1. Disable the extension when you are browsing the internet. By removing CSP, the website's protection reduces significantly which might harm you.
2. The extension removes specified CSP-related headers from the top-frame and all sub-frame elements

Definitions:
"content-security-policy" header: The HTTP Content-Security-Policy response header allows website administrators to control resources the user agent is allowed to load for a given page. With a few exceptions, policies mostly involve specifying server origins and script endpoints. This helps guard against cross-site scripting attacks (Cross-site_scripting).

"content-security-policy-report-only" header: The HTTP Content-Security-Policy-Report-Only response header allows web developers to experiment with policies by monitoring (but not enforcing) their effects. These violation reports consist of JSON documents sent via an HTTP POST request to the specified URI.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CSP Unblock CSP Unblock
ID lkbelpgpclajeekijigjffllhigbhobd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/csp-unblock/lkbelpgpclajeekijigjffllhigbhobd
คำอธิบาย No more Content-Security-Policy limitations. This extension removes all CSP-related headers during website testing.
ขนาดไฟล์ 114 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2022-05-23
วันที่เผยแพร่ 2022-04-27
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา balvin.perrie
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://add0n.com/csp-unblock.html
URL หน้าช่วยเหลือ https://add0n.com/csp-unblock.html
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/balvin.perrie.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.1.1",
    "name": "CSP Unblock",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "csp-1",
                "enabled": false,
                "path": "rulesets\/csp-1.json"
            },
            {
                "id": "csp-2",
                "enabled": false,
                "path": "rulesets\/csp-2.json"
            },
            {
                "id": "csp-3",
                "enabled": false,
                "path": "rulesets\/csp-3.json"
            },
            {
                "id": "csp-4",
                "enabled": false,
                "path": "rulesets\/csp-4.json"
            }
        ]
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "homepage_url": "https:\/\/add0n.com\/csp-unblock.html",
    "action": [],
    "background": {
        "service_worker": "worker.js"
    }
}