Ugly HTTP
Makes HTTP pages conspicuous.
什麼是Ugly HTTP?
Ugly HTTP是由lgarron開發的Chrome擴展程式,該擴展的主要功能是“Makes HTTP pages conspicuous.”。
擴展截圖
下載Ugly HTTP擴展crx文件
下載Ugly HTTP擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Makes HTTP pages conspicous. By default, HTTP pages are faded. Multiple themes are available: - faded - grayscale - sepia - wide-blur - overexposed - red - blue - flip-hue
擴展基本資訊
名稱 | Ugly HTTP |
ID | mlneofdamjbcmahdcjjbmbjomedanhal |
官方網址 | https://chromewebstore.google.com/detail/ugly-http/mlneofdamjbcmahdcjjbmbjomedanhal |
簡介 | Makes HTTP pages conspicuous. |
檔案大小 | 14.96 KB |
安裝次數 | 25 |
目前版本 | 1.2.0 |
更新時間 | 2018-08-29 |
上架時間 | 2018-08-28 |
評分 | 5.00/5 共 2 次評分 |
開發者 | lgarron |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/lgarron/ugly-http-extension |
說明頁面URL | https://github.com/lgarron/ugly-http-extension |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ugly HTTP", "description": "Makes HTTP pages conspicuous.", "author": "Lucas Garron (@lgarron)", "version": "1.2.0", "icons": { "128": "images\/extensionIcon-128px.png" }, "permissions": [ "storage", "activeTab" ], "browser_action": { "default_icon": { "128": "images\/extensionIcon-128px.png" }, "default_popup": "popup.html", "default_title": "Undo" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "ugly.css" ] } ], "background": { "scripts": [ "command.js" ], "persistent": false }, "options_ui": { "page": "options\/options.html", "chrome_style": true }, "commands": { "go-secure": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "MacCtrl+Command+S" }, "description": "Switch to HTTPS" } } } |