CSPRO

CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.

Apa itu CSPRO?

CSPRO adalah ekstensi Chrome yang dikembangkan oleh https://shafigullin.pro, dan fitur utamanya adalah "CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi CSPRO

Unduh file ekstensi CSPRO 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

                        CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
On options page can be set replacement Content Security Policy.
This extension is for web development purposes only.                    

Informasi Dasar Ekstensi

Nama CSPRO CSPRO
ID gopcegfcgnhiiohnpppbcfkdlpipnnei
URL Resmi https://chromewebstore.google.com/detail/cspro/gopcegfcgnhiiohnpppbcfkdlpipnnei
Deskripsi CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
Ukuran File 16.73 KB
Jumlah Instalasi 144
Versi Saat Ini 1.7.0.0
Terakhir Diperbarui 2023-09-01
Tanggal Publikasi 2020-04-23
Penilaian 5.00/5 Total 5 Penilaian
Pengembang https://shafigullin.pro
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.linkedin.com/in/xss/
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSPRO",
    "version": "1.7.0.0",
    "description": "CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.",
    "author": "Roman Shafigullin",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "cspAnalyzer.js",
                "logger.js",
                "inlineScriptsDetector.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "CSPRO.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": {
            "128": "icon.png"
        },
        "default_title": "CSPRO"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2
}