HTTPS Mixed Content Locator

Easily locate and identify mixed content on any HTTPS site.

ما هو HTTPS Mixed Content Locator؟

HTTPS Mixed Content Locator هو إضافة Chrome تم تطويرها بواسطة https://www.pericror.com، والميزة الرئيسية لها هي "Easily locate and identify mixed content on any HTTPS site.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة HTTPS Mixed Content Locator

قم بتنزيل ملفات الامتداد HTTPS Mixed Content Locator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/
عنوان صفحة المساعدة 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
}