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