Show protocol of address
Display protocol (https, http, ftp, ...) from given web address
Wat is Show protocol of address?
Show protocol of address is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Display protocol (https, http, ftp, ...) from given web address".
Extensie Screenshots
Download het CRX-bestand van de extensie Show protocol of address
Download Show protocol of address-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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, ...)
Basisinformatie over de Extensie
Naam | Show protocol of address |
ID | dofcajnagbfdbiilfadlpojiikgpiaah |
Officiële URL | https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah |
Beschrijving | Display protocol (https, http, ftp, ...) from given web address |
Bestandsgrootte | 57.46 KB |
Aantal Installaties | 47 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2018-09-11 |
Publicatiedatum | 2018-09-11 |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" } } } |