ScriptMix

Chrome extension for detecting mixed scripting vulnerabilities.

Что такое ScriptMix?

ScriptMix - это расширение Chrome, разработанное https://idilernia.com, и его основная функция - "Chrome extension for detecting mixed scripting vulnerabilities.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения ScriptMix

Скачайте файлы расширений 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"
            ]
        }
    ]
}