ScriptMix

Chrome extension for detecting mixed scripting vulnerabilities.

Wat is ScriptMix?

ScriptMix is een Chrome-extensie ontwikkeld door https://idilernia.com, en de belangrijkste functie is "Chrome extension for detecting mixed scripting vulnerabilities.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ScriptMix

Download ScriptMix-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam ScriptMix ScriptMix
ID akfcmnekacjnbipljndhjbhicapmllfl
Officiële URL https://chromewebstore.google.com/detail/scriptmix/akfcmnekacjnbipljndhjbhicapmllfl
Beschrijving Chrome extension for detecting mixed scripting vulnerabilities.
Bestandsgrootte 283 KB
Aantal Installaties 18
Huidige Versie 1.0
Laatst Bijgewerkt 2013-10-12
Publicatiedatum 2013-10-11
Ontwikkelaar https://idilernia.com
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}