color-pusher

Easy color theme tweaking for any website as Chrome DevTools panel

Что такое color-pusher?

color-pusher - это расширение Chrome, разработанное https://glebbahmutov.com, и его основная функция - "Easy color theme tweaking for any website as Chrome DevTools panel".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения color-pusher

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

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

                        Tweak any or all colors in any page using this DevTools panel. 
Easily replace entire color palette, adjust hue, saturation and value.
Generate multiple colors based on first color as triad, tetrad, analogous, etc.

Work in progress. Please take a look at the source code / file issues at https://github.com/bahmutov/color-pusher-chrome. Follow on Twitter at https://twitter.com/bahmutov

A related widget that can be embedded into your (single line) page and allows to fetch entire palette from external websites: https://github.com/bahmutov/color-pusher                    

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

Название color-pusher color-pusher
ID gcahnlgconcbplfboahcgaobkpdhidee
Официальный URL https://chromewebstore.google.com/detail/color-pusher/gcahnlgconcbplfboahcgaobkpdhidee
Описание Easy color theme tweaking for any website as Chrome DevTools panel
Размер файла 773 KB
Количество установок 117
Текущая Версия 0.0.2
Последнее Обновление 2013-12-10
Дата публикации 2013-12-09
Рейтинг 3.00/5 Всего 2 оценок
Разработчик https://glebbahmutov.com
Тип оплаты free
Официальный сайт расширения http://glebbahmutov.com/color-pusher/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "color-pusher",
    "version": "0.0.2",
    "author": "Gleb Bahmutov",
    "description": "Easy color theme tweaking for any website as Chrome DevTools panel",
    "permissions": [],
    "optional_permissions": [],
    "icons": {
        "128": "icons\/app-icon-128.png",
        "64": "icons\/app-icon-64.png",
        "48": "icons\/app-icon-48.png",
        "32": "icons\/app-icon-32.png",
        "16": "icons\/app-icon-16.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "panel\/libs\/jquery.js",
                "content-script\/color-pusher-injected-into-page.js"
            ]
        }
    ]
}