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
公式URL 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"
            ]
        }
    ]
}