Disable-CSP

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

Apa itu Disable-CSP?

Disable-CSP adalah ekstensi Chrome yang dikembangkan oleh lisonge, dan fitur utamanya adalah "A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Disable-CSP

Unduh file ekstensi Disable-CSP dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Disable-CSP Disable-CSP
ID hgegihapiofjgmmgigbblnjaicgjhoko
URL Resmi https://chromewebstore.google.com/detail/disable-csp/hgegihapiofjgmmgigbblnjaicgjhoko
Deskripsi A browser extension to disable http header Content-Security-Policy and html meta Content-Security-Policy
Ukuran File 34.07 KB
Jumlah Instalasi 261
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2023-09-10
Tanggal Publikasi 2023-07-24
Pengembang lisonge
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/lisonge/Disable-CSP
URL Halaman Bantuan https://github.com/lisonge/Disable-CSP/issues
Bahasa yang Didukung 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"
}