Show protocol of address

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

What is Show protocol of address?

Show protocol of address is a Chrome extension developed by Unknown, and its main feature is "Display protocol (https, http, ftp, ...) from given web address".

Extension Screenshots

screenshot

Download Show protocol of address Extension CRX File

Download Show protocol of address extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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, ...)                    

Extension Basic Information

Name Show protocol of address Show protocol of address
ID dofcajnagbfdbiilfadlpojiikgpiaah
Official URL https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah
Description Display protocol (https, http, ftp, ...) from given web address
File Size 57.46 KB
Installation Count 47
Current Version 0.0.1
Last Updated 2018-09-11
Publish Date 2018-09-11
Developer Unknown
Payment Type free
Supported Languages 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"
        }
    }
}