Show protocol of address
Display protocol (https, http, ftp, ...) from given web address
Cos'è Show protocol of address?
Show protocol of address è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Display protocol (https, http, ftp, ...) from given web address".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Show protocol of address
Scarica i file di estensione Show protocol of address in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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, ...)
Informazioni di Base sull'Estensione
Nome | Show protocol of address |
ID | dofcajnagbfdbiilfadlpojiikgpiaah |
URL Ufficiale | https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah |
Descrizione | Display protocol (https, http, ftp, ...) from given web address |
Dimensione del File | 57.46 KB |
Conteggio Installazioni | 47 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2018-09-11 |
Data di Pubblicazione | 2018-09-11 |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } } |