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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}