ScriptMix

Chrome extension for detecting mixed scripting vulnerabilities.

什麼是ScriptMix?

ScriptMix是由https://idilernia.com開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension for detecting mixed scripting vulnerabilities.”。

擴展截圖

screenshot

下載ScriptMix擴展crx文件

下載ScriptMix擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 ScriptMix ScriptMix
ID akfcmnekacjnbipljndhjbhicapmllfl
官方網址 https://chromewebstore.google.com/detail/scriptmix/akfcmnekacjnbipljndhjbhicapmllfl
簡介 Chrome extension for detecting mixed scripting vulnerabilities.
檔案大小 283 KB
安裝次數 18
目前版本 1.0
更新時間 2013-10-12
上架時間 2013-10-11
開發者 https://idilernia.com
付費類型 free
支援的語言 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"
            ]
        }
    ]
}