CSPRO

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

Vad är CSPRO?

CSPRO är en Chrome-tillägg utvecklad av https://shafigullin.pro, och dess huvudfunktion är "CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner CSPRO-förlängningens CRX-fil

Ladda ner CSPRO-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn CSPRO CSPRO
ID gopcegfcgnhiiohnpppbcfkdlpipnnei
Officiell webbadress https://chromewebstore.google.com/detail/cspro/gopcegfcgnhiiohnpppbcfkdlpipnnei
Beskrivning CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
Filstorlek 16.73 KB
Antal Installationer 144
Aktuell Version 1.7.0.0
Senast Uppdaterad 2023-09-01
Publiceringsdatum 2020-04-23
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare https://shafigullin.pro
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.linkedin.com/in/xss/
Stödda Språk 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
}