Show protocol of address
Display protocol (https, http, ftp, ...) from given web address
Co to jest Show protocol of address?
Show protocol of address to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Display protocol (https, http, ftp, ...) from given web address”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Show protocol of address
Pobierz pliki rozszerzeń Show protocol of address w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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, ...)
Podstawowe informacje o rozszerzeniu
Nazwa | Show protocol of address |
ID | dofcajnagbfdbiilfadlpojiikgpiaah |
Oficjalny URL | https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah |
Opis | Display protocol (https, http, ftp, ...) from given web address |
Rozmiar pliku | 57.46 KB |
Liczba instalacji | 47 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2018-09-11 |
Data Publikacji | 2018-09-11 |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | 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" } } } |