HTTPS Mixed Content Locator

Easily locate and identify mixed content on any HTTPS site.

HTTPS Mixed Content Locator क्या है?

HTTPS Mixed Content Locator https://www.pericror.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily locate and identify mixed content on any HTTPS site."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में HTTPS Mixed Content Locator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The HTTPS Mixed Content Locator Chrome Extension will help you identify the mixed content on your page so that you quickly complete migrating your site from HTTP to HTTPS. The extension supports identifying the following mixed content:
Passive Mixed Content (have http:// urls in their src attribute)
- img
- audio
- video
- source
Active Mixed Content
- iframe (with http:// url in the src attribute)
- script (with http:// url in the src attribute)
- object (with http:// url in the data attribute)
- link (with rel="stylesheet")
The extension allows you to visually locate all passive mixed content on the page as well as copy the url of the insecure element for all mixed content.

Note: Chrome will need to be restarted after installation to have the extension work as intended.                    

एक्सटेंशन की मूल जानकारी

नाम HTTPS Mixed Content Locator HTTPS Mixed Content Locator
ID pbljfomgollbampmcmalflifheichabj
आधिकारिक URL https://chromewebstore.google.com/detail/https-mixed-content-locat/pbljfomgollbampmcmalflifheichabj
विवरण Easily locate and identify mixed content on any HTTPS site.
फ़ाइल का आकार 27.42 KB
स्थापना संख्या 4,000
वर्तमान संस्करण 1.3
अंतिम अपडेट 2018-04-15
प्रकाशन तिथि 2018-04-15
रेटिंग 3.07/5 कुल 15 रेटिंग्स
डेवलपर https://www.pericror.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.pericror.com/products/https-mixed-content-locator/
सहायता पृष्ठ URL https://www.pericror.com/software/https-mixed-content-locator/
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTTPS Mixed Content Locator",
    "short_name": "MixedContent",
    "description": "Easily locate and identify mixed content on any HTTPS site.",
    "version": "1.3",
    "permissions": [
        "https:\/\/*\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Locate mixed content",
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "homepage_url": "https:\/\/www.pericror.com",
    "minimum_chrome_version": "41",
    "manifest_version": 2
}