CSPRO

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

CSPROとは何ですか?

CSPROはhttps://shafigullin.proによって開発されたChromeの拡張機能で、その主な機能は「CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.」です。

拡張機能のスクリーンショット

screenshot
screenshot

CSPRO拡張機能のCRXファイルをダウンロード

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
Eメール [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
}