Show protocol of address
Display protocol (https, http, ftp, ...) from given web address
什麼是Show protocol of address?
Show protocol of address是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Display protocol (https, http, ftp, ...) from given web address”。
擴展截圖
下載Show protocol of address擴展crx文件
下載Show protocol of address擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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, ...)
擴展基本資訊
名稱 | Show protocol of address |
ID | dofcajnagbfdbiilfadlpojiikgpiaah |
官方網址 | https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah |
簡介 | Display protocol (https, http, ftp, ...) from given web address |
檔案大小 | 57.46 KB |
安裝次數 | 47 |
目前版本 | 0.0.1 |
更新時間 | 2018-09-11 |
上架時間 | 2018-09-11 |
開發者 | Unknown |
付費類型 | free |
支援的語言 | 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" } } } |