Show protocol of address

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

什么是Show protocol of address?

Show protocol of address是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Display protocol (https, http, ftp, ...) from given web address”。

扩展截图

screenshot

下载Show protocol of address扩展crx文件

下载Show protocol of address扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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