ScriptMix

Chrome extension for detecting mixed scripting vulnerabilities.

Co to jest ScriptMix?

ScriptMix to rozszerzenie Chrome opracowane przez https://idilernia.com, a jego główną funkcją jest „Chrome extension for detecting mixed scripting vulnerabilities.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ScriptMix

Pobierz pliki rozszerzeń ScriptMix w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ScriptMix ScriptMix
ID akfcmnekacjnbipljndhjbhicapmllfl
Oficjalny URL https://chromewebstore.google.com/detail/scriptmix/akfcmnekacjnbipljndhjbhicapmllfl
Opis Chrome extension for detecting mixed scripting vulnerabilities.
Rozmiar pliku 283 KB
Liczba instalacji 18
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-10-12
Data Publikacji 2013-10-11
Deweloper https://idilernia.com
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}