CSPRO

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

Cos'è CSPRO?

CSPRO è un'estensione di Chrome sviluppata da https://shafigullin.pro, e la sua funzione principale è "CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione CSPRO

Scarica i file di estensione CSPRO in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome CSPRO CSPRO
ID gopcegfcgnhiiohnpppbcfkdlpipnnei
URL Ufficiale https://chromewebstore.google.com/detail/cspro/gopcegfcgnhiiohnpppbcfkdlpipnnei
Descrizione CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
Dimensione del File 16.73 KB
Conteggio Installazioni 144
Versione Corrente 1.7.0.0
Ultimo Aggiornamento 2023-09-01
Data di Pubblicazione 2020-04-23
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore https://shafigullin.pro
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.linkedin.com/in/xss/
Lingue Supportate 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
}