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
官方網址 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
}