Show protocol of address

Display protocol (https, http, ftp, ...) from given web address

ما هو Show protocol of address؟

Show protocol of address هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Display protocol (https, http, ftp, ...) from given web address".

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

screenshot

تحميل ملف CRX للإضافة Show protocol of address

قم بتنزيل ملفات الامتداد Show protocol of address بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Chrome address bar no longer shows protocol in the address bar. This extension brings the protocol information back to you and shows you which protocol is used (i.e. https, http, ftp, ...)                    

معلومات أساسية عن التمديد

الاسم Show protocol of address Show protocol of address
ID dofcajnagbfdbiilfadlpojiikgpiaah
عنوان URL الرسمي https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah
الوصف Display protocol (https, http, ftp, ...) from given web address
حجم الملف 57.46 KB
عدد التثبيتات 47
النسخة الحالية 0.0.1
آخر تحديث 2018-09-11
تاريخ النشر 2018-09-11
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show protocol of address",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Display protocol (https, http, ftp, ...) from given web address",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        }
    }
}