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 扩展基本信息
| 名称 | |
| ID | mlneofdamjbcmahdcjjbmbjomedanhal |
| 官方URL | 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"
}
}
} | |