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"
]
}
]
} | |