Card Colors for Trello

Takes card label colors, either merge them or pick the first and add them to the entire card.

Что такое Card Colors for Trello?

Card Colors for Trello - это расширение Chrome, разработанное Trustpilot, и его основная функция - "Takes card label colors, either merge them or pick the first and add them to the entire card.".

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

screenshot

Скачать файл CRX расширения Card Colors for Trello

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

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

                        Simple extension allowing the selected label colors of cards in Trello to fill the entire card. Settings allow either combing colors of multiple labels by simple rgb base value average or pick the color of the first label.

1.0.0.8 - Fixed issue with changed classes
1.0.0.7 - Reduced CPU load by only updating the DOM when there are changes
1.0.0.6 - Fixed some style issues and added an option button to select between 'merge' and 'use first label color'-mode to the top left menu.
1.0.0.5 - Should play more nicely with stickers now. If not - let me know.                    

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

Название Card Colors for Trello Card Colors for Trello
ID nodlpencjjlohojddhflnahnfpfanbjm
Официальный URL https://chromewebstore.google.com/detail/card-colors-for-trello/nodlpencjjlohojddhflnahnfpfanbjm
Описание Takes card label colors, either merge them or pick the first and add them to the entire card.
Размер файла 37.98 KB
Количество установок 22,843
Текущая Версия 1.0.0.8
Последнее Обновление 2017-06-28
Дата публикации 2017-06-28
Рейтинг 3.97/5 Всего 104 оценок
Разработчик Trustpilot
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности http://legal.trustpilot.com/end-user-privacy-terms
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Card Colors for Trello",
    "description": "Takes card label colors, either merge them or pick the first and add them to the entire card.",
    "version": "1.0.0.8",
    "icons": {
        "128": "img\/icon128.png"
    },
    "web_accessible_resources": [
        "js\/jquery.min.map"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "js\/jquery-1.9.1.min.js",
                "js\/content.js"
            ]
        }
    ]
}