Trello Card Counter
Card counters and card identifiers for easy collaboration and project management
Что такое Trello Card Counter?
Trello Card Counter - это расширение Chrome, разработанное Alex Benoit, и его основная функция - "Card counters and card identifiers for easy collaboration and project management".
Снимки экрана расширения
Скачать файл CRX расширения Trello Card Counter
Скачайте файлы расширений Trello Card Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
[recently updated, fully working] Trello Card Counter Plus tells you how many cards you have in your lists and board and gives the cards identifiers for easier collaboration and project management. Updated for Trello 2024.
Основная информация о расширении
Название | Trello Card Counter |
ID | hepiaakjhimoagmpalbfoojemcnlnagn |
Официальный URL | https://chromewebstore.google.com/detail/trello-card-counter/hepiaakjhimoagmpalbfoojemcnlnagn |
Описание | Card counters and card identifiers for easy collaboration and project management |
Размер файла | 14.12 KB |
Количество установок | 20,000 |
Текущая Версия | 3.0.0 |
Последнее Обновление | 2023-12-03 |
Дата публикации | 2017-11-22 |
Рейтинг | 3.93/5 Всего 27 оценок |
Разработчик | Alex Benoit |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://alexbenoit.me/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Trello Card Counter", "version": "3.0.0", "description": "Card counters and card identifiers for easy collaboration and project management", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/b\/*" ], "js": [ "trello-override.js" ], "css": [ "trello-override.css" ] } ], "icons": { "128": "trelloext.png" } } |