ScriptMix

Chrome extension for detecting mixed scripting vulnerabilities.

ScriptMix là gì?

ScriptMix là một tiện ích mở rộng Chrome được phát triển bởi https://idilernia.com, và tính năng chính của nó là "Chrome extension for detecting mixed scripting vulnerabilities.".

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

screenshot

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

Tải xuống các tệp mở rộng ScriptMix 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

                        Chrome extension for detecting mixed scripting vulnerabilities and unencrypted content in HTTPS page loads.

When loading pages using a secure connection not all content may be loaded through an encrypted channel. This extension examines web requests looking for non-HTTPS content that could be altered or monitored using MITM attacks.

To check for unencrypted content simply load a page, the extension icon will change color in case of potential vulnerabilities.                    

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

Tên ScriptMix ScriptMix
ID akfcmnekacjnbipljndhjbhicapmllfl
URL Chính Thức https://chromewebstore.google.com/detail/scriptmix/akfcmnekacjnbipljndhjbhicapmllfl
Mô tả Chrome extension for detecting mixed scripting vulnerabilities.
Kích Thước Tệp 283 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-10-12
Ngày Phát Hành 2013-10-11
Nhà Phát Triển https://idilernia.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScriptMix",
    "description": "Chrome extension for detecting mixed scripting vulnerabilities.",
    "version": "1.0",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "",
        "webRequest",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "images\/good.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScriptHttps.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScriptHttp.js"
            ]
        }
    ]
}