Color Palette Finder

Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.

Что такое Color Palette Finder?

Color Palette Finder - это расширение Chrome, разработанное jamesaburnell, и его основная функция - "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.".

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

screenshot

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

Скачайте файлы расширений Color Palette Finder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Find the top 6 most commonly used colors on any site! Creates a palette of HEX and RGB values. Clicking on one of the colors will copy the HEX value to your clipboard.                    

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

Название Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
Официальный URL https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
Описание Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
Размер файла 28.27 KB
Количество установок 898
Текущая Версия 0.0.2
Последнее Обновление 2016-01-08
Дата публикации 2016-01-08
Рейтинг 2.60/5 Всего 5 оценок
Разработчик jamesaburnell
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Palette Finder",
    "description": "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "cpflogo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "palette-finder.js"
            ]
        }
    ]
}