Disable-CSP

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

Disable-CSP là gì?

Disable-CSP là một tiện ích mở rộng Chrome được phát triển bởi lisonge, và tính năng chính của nó là "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Disable-CSP

Tải xuống các tệp mở rộng Disable-CSP dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
URL Chính Thức https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Mô tả A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
Kích Thước Tệp 34.07 KB
Số Lần Cài Đặt 261
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-09-10
Ngày Phát Hành 2023-07-24
Nhà Phát Triển lisonge
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lisonge/Disable-CSP
URL Trang Trợ Giúp https://github.com/lisonge/Disable-CSP/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}