ScriptMix

Chrome extension for detecting mixed scripting vulnerabilities.

What is ScriptMix?

ScriptMix is a Chrome extension developed by https://idilernia.com, and its main feature is "Chrome extension for detecting mixed scripting vulnerabilities.".

Extension Screenshots

screenshot

Download ScriptMix Extension CRX File

Download ScriptMix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ScriptMix ScriptMix
ID akfcmnekacjnbipljndhjbhicapmllfl
Official URL https://chromewebstore.google.com/detail/scriptmix/akfcmnekacjnbipljndhjbhicapmllfl
Description Chrome extension for detecting mixed scripting vulnerabilities.
File Size 283 KB
Installation Count 18
Current Version 1.0
Last Updated 2013-10-12
Publish Date 2013-10-11
Developer https://idilernia.com
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}