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