Color Search

Adds a Google search card for when a color is searched.

Что такое Color Search?

Color Search - это расширение Chrome, разработанное Ian Hoegen, и его основная функция - "Adds a Google search card for when a color is searched.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Color Search

Скачайте файлы расширений 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                    

Основная информация о расширении

Название Color Search Color Search
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"
            ]
        }
    ]
}