Show protocol of address

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

Vad är Show protocol of address?

Show protocol of address är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Display protocol (https, http, ftp, ...) from given web address".

Tilläggsskärmbilder

screenshot

Ladda ner Show protocol of address-förlängningens CRX-fil

Ladda ner Show protocol of address-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Show protocol of address Show protocol of address
ID dofcajnagbfdbiilfadlpojiikgpiaah
Officiell webbadress https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah
Beskrivning Display protocol (https, http, ftp, ...) from given web address
Filstorlek 57.46 KB
Antal Installationer 47
Aktuell Version 0.0.1
Senast Uppdaterad 2018-09-11
Publiceringsdatum 2018-09-11
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
        }
    }
}