CSPRO

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

Qu'est-ce que CSPRO ?

CSPRO est une extension Chrome développée par https://shafigullin.pro, et sa fonction principale est "CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension CSPRO

Téléchargez les fichiers d'extension CSPRO au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom CSPRO CSPRO
ID gopcegfcgnhiiohnpppbcfkdlpipnnei
URL Officiel https://chromewebstore.google.com/detail/cspro/gopcegfcgnhiiohnpppbcfkdlpipnnei
Description CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
Taille du Fichier 16.73 KB
Nombre d'Installations 144
Version Actuelle 1.7.0.0
Dernière Mise à Jour 2023-09-01
Date de Publication 2020-04-23
Évaluation 5.00/5 Total 5 Évaluations
Développeur https://shafigullin.pro
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.linkedin.com/in/xss/
Langues Prises en Charge 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
}