Kanban WIP for Trello

Adds work-in-progress limits to Trello lists supporting a Kanban workflow.

Что такое Kanban WIP for Trello?

Kanban WIP for Trello - это расширение Chrome, разработанное NateHark, и его основная функция - "Adds work-in-progress limits to Trello lists supporting a Kanban workflow.".

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

screenshot

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

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

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

                        Install

Install Kanban WIP for Trello via the Chrome Web Store.

Instructions

A work-in-progress limit can be added to a Trello list by adding the limit to the list title in braces. If you name your list "QA [5]", this sets a work-in-progress limit of 5 items to the QA list. When the number of cards in the QA list exceeds 5, the list will be highlighted in red.

Updates

v1.0.3
Bug fixes

v1.0.0
Updates for performance and reliability

Issues, feature requests, bug fixes? This project is on Github at https://github.com/NateHark/TrelloWIPLimits                    

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

Название Kanban WIP for Trello Kanban WIP for Trello
ID oekefjibcnongmmmmkdiofgeppfkmdii
Официальный URL https://chromewebstore.google.com/detail/kanban-wip-for-trello/oekefjibcnongmmmmkdiofgeppfkmdii
Описание Adds work-in-progress limits to Trello lists supporting a Kanban workflow.
Размер файла 31.8 KB
Количество установок 9,432
Текущая Версия 1.0.3
Последнее Обновление 2017-08-02
Дата публикации 2017-08-01
Рейтинг 4.39/5 Всего 56 оценок
Разработчик NateHark
Тип оплаты free
Официальный сайт расширения https://github.com/NateHark/TrelloWIPLimits
URL страницы помощи https://github.com/NateHark/TrelloWIPLimits/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kanban WIP for Trello",
    "version": "1.0.3",
    "description": "Adds work-in-progress limits to Trello lists supporting a Kanban workflow.",
    "icons": {
        "128": "icon.png"
    },
    "author": "Nathan Harkenrider",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "extension.js"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/NateHark\/TrelloWIPLimits"
}