Show protocol of address
Display protocol (https, http, ftp, ...) from given web address
Qu'est-ce que Show protocol of address ?
Show protocol of address est une extension Chrome développée par Unknown, et sa fonction principale est "Display protocol (https, http, ftp, ...) from given web address".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Show protocol of address
Téléchargez les fichiers d'extension Show protocol of address au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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, ...)
Informations de Base sur l'Extension
Nom | Show protocol of address |
ID | dofcajnagbfdbiilfadlpojiikgpiaah |
URL Officiel | https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah |
Description | Display protocol (https, http, ftp, ...) from given web address |
Taille du Fichier | 57.46 KB |
Nombre d'Installations | 47 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2018-09-11 |
Date de Publication | 2018-09-11 |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |