Color Search
Adds a Google search card for when a color is searched.
Color Searchとは何ですか?
Color SearchはIan Hoegenによって開発されたChromeの拡張機能で、その主な機能は「Adds a Google search card for when a color is searched.」です。
拡張機能のスクリーンショット
Color Search拡張機能のCRXファイルをダウンロード
Color Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension checks the Google search bar, and will add a color card to the top of the search result if the query is a color. This is great for if you need to find the associated color to a RGB color code, or a Hex code.
Donations are accepted at https://www.paypal.me/ihoegen/5
Github: https://github.com/ihoegen/ColorSearch 拡張機能の基本情報
| 名前 | |
| ID | eogeejfgkddjjibpecmcgdohpknkjabo |
| 公式URL | https://chromewebstore.google.com/detail/color-search/eogeejfgkddjjibpecmcgdohpknkjabo |
| 説明 | Adds a Google search card for when a color is searched. |
| ファイルサイズ | 192 KB |
| インストール数 | 503 |
| 現在のバージョン | 1.0.2 |
| 最終更新日 | 2016-04-09 |
| 公開日 | 2016-04-09 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Ian Hoegen |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/ihoegen/ColorSearch |
| ヘルプページのURL | https://github.com/ihoegen/ColorSearch/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Color Search",
"description": "Adds a Google search card for when a color is searched. ",
"version": "1.0.2",
"icons": {
"128": "icon.png",
"48": "icon.png",
"256": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*"
],
"js": [
"main.min.js"
]
}
]
} | |