ScriptMix

Chrome extension for detecting mixed scripting vulnerabilities.

ScriptMix란 무엇입니까?

ScriptMix은(는) https://idilernia.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension for detecting mixed scripting vulnerabilities."입니다.

확장 프로그램 스크린샷

screenshot

ScriptMix 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}