Show protocol of address

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

Was ist Show protocol of address?

Show protocol of address ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Display protocol (https, http, ftp, ...) from given web address".

Erweiterungsscreenshots

screenshot

Show protocol of address-Erweiterungs-CRX-Datei herunterladen

Laden Sie Show protocol of address-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Show protocol of address Show protocol of address
ID dofcajnagbfdbiilfadlpojiikgpiaah
Offizielle URL https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah
Beschreibung Display protocol (https, http, ftp, ...) from given web address
Dateigröße 57.46 KB
Installationsanzahl 47
Aktuelle Version 0.0.1
Letztes Update 2018-09-11
Veröffentlichungsdatum 2018-09-11
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}