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 |
| Eメール | [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"
}
}
} | |