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
}