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 |
| 官方網址 | 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"
]
}
]
} | |