CSPRO

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

Co to jest CSPRO?

CSPRO to rozszerzenie Chrome opracowane przez https://shafigullin.pro, a jego główną funkcją jest „CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia CSPRO

Pobierz pliki rozszerzeń CSPRO w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa CSPRO CSPRO
ID gopcegfcgnhiiohnpppbcfkdlpipnnei
Oficjalny URL https://chromewebstore.google.com/detail/cspro/gopcegfcgnhiiohnpppbcfkdlpipnnei
Opis CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
Rozmiar pliku 16.73 KB
Liczba instalacji 144
Aktualna Wersja 1.7.0.0
Ostatnia Aktualizacja 2023-09-01
Data Publikacji 2020-04-23
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper https://shafigullin.pro
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.linkedin.com/in/xss/
Obsługiwane Języki 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
}