CSPRO

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

CSPRO là gì?

CSPRO là một tiện ích mở rộng Chrome được phát triển bởi https://shafigullin.pro, và tính năng chính của nó là "CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CSPRO

Tải xuống các tệp mở rộng CSPRO dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CSPRO CSPRO
ID gopcegfcgnhiiohnpppbcfkdlpipnnei
URL Chính Thức https://chromewebstore.google.com/detail/cspro/gopcegfcgnhiiohnpppbcfkdlpipnnei
Mô tả CSPRO extension prevents sending Content Security Policy report to servers and enables report only mode.
Kích Thước Tệp 16.73 KB
Số Lần Cài Đặt 144
Phiên Bản Hiện Tại 1.7.0.0
Cập Nhật Lần Cuối 2023-09-01
Ngày Phát Hành 2020-04-23
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://shafigullin.pro
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.linkedin.com/in/xss/
Ngôn Ngữ Được Hỗ Trợ 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
}