Trello Color Count
Count trello label with color for easier communication in a team
Что такое Trello Color Count?
Trello Color Count - это расширение Chrome, разработанное wendycaner, и его основная функция - "Count trello label with color for easier communication in a team".
Снимки экрана расширения
Скачать файл CRX расширения Trello Color Count
Скачайте файлы расширений Trello Color Count в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
"Count Trello Label" helps you count all cards' label time in a list.If you have installed "Card Color Titles for Trello", it will be better. Tips: A List named "Divider" will look like a divider. Just have a try!
Основная информация о расширении
Название | |
ID | ailnckmejodnmfoifnagckkfapbigkjf |
Официальный URL | https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf |
Описание | Count trello label with color for easier communication in a team |
Размер файла | 38.16 KB |
Количество установок | 58 |
Текущая Версия | 1.1.6 |
Последнее Обновление | 2018-11-26 |
Дата публикации | 2018-11-26 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | wendycaner |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.6", "name": "Trello Color Count", "description": "Count trello label with color for easier communication in a team", "manifest_version": 2, "browser_action": { "default_popup": "pop\/popup.html" }, "permissions": [ "storage", "tabs", "https:\/\/trello.com\/*" ], "background": { "persistent": false, "scripts": [ "background\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "css": [ "index.css" ], "js": [ "lib\/jquery-3.1.1.js", "content.js" ] } ] } |