ScriptMix

Chrome extension for detecting mixed scripting vulnerabilities.

ScriptMix क्या है?

ScriptMix https://idilernia.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension for detecting mixed scripting vulnerabilities."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ScriptMix एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}