CSPRO

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

Was ist CSPRO?

CSPRO ist eine Chrome-Erweiterung, die von https://shafigullin.pro entwickelt wurde, und ihr Hauptmerkmal ist "CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.".

Erweiterungsscreenshots

screenshot
screenshot

CSPRO-Erweiterungs-CRX-Datei herunterladen

Laden Sie CSPRO-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CSPRO CSPRO
ID gopcegfcgnhiiohnpppbcfkdlpipnnei
Offizielle URL https://chromewebstore.google.com/detail/cspro/gopcegfcgnhiiohnpppbcfkdlpipnnei
Beschreibung CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
Dateigröße 16.73 KB
Installationsanzahl 144
Aktuelle Version 1.7.0.0
Letztes Update 2023-09-01
Veröffentlichungsdatum 2020-04-23
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler https://shafigullin.pro
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.linkedin.com/in/xss/
Unterstützte Sprachen 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
}