CSPRO

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

Что такое CSPRO?

CSPRO - это расширение Chrome, разработанное https://shafigullin.pro, и его основная функция - "CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения CSPRO

Скачайте файлы расширений CSPRO в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название CSPRO CSPRO
ID gopcegfcgnhiiohnpppbcfkdlpipnnei
Официальный URL https://chromewebstore.google.com/detail/cspro/gopcegfcgnhiiohnpppbcfkdlpipnnei
Описание CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
Размер файла 16.73 KB
Количество установок 144
Текущая Версия 1.7.0.0
Последнее Обновление 2023-09-01
Дата публикации 2020-04-23
Рейтинг 5.00/5 Всего 5 оценок
Разработчик https://shafigullin.pro
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.linkedin.com/in/xss/
Поддерживаемые языки 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
}