Kanban WIP for Trello

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

¿Qué es Kanban WIP for Trello?

Kanban WIP for Trello es una extensión de Chrome desarrollada por NateHark, y su función principal es "Adds work-in-progress limits to Trello lists supporting a Kanban workflow.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Kanban WIP for Trello

Descarga archivos de extensión Kanban WIP for Trello en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Kanban WIP for Trello Kanban WIP for Trello
ID oekefjibcnongmmmmkdiofgeppfkmdii
URL Oficial https://chromewebstore.google.com/detail/kanban-wip-for-trello/oekefjibcnongmmmmkdiofgeppfkmdii
Descripción Adds work-in-progress limits to Trello lists supporting a Kanban workflow.
Tamaño del Archivo 31.8 KB
Cantidad de Instalaciones 9,432
Versión Actual 1.0.3
Última Actualización 2017-08-02
Fecha de Publicación 2017-08-01
Calificación 4.39/5 Total de 56 Calificaciones
Desarrollador NateHark
Tipo de Pago free
Sitio Web de la Extensión https://github.com/NateHark/TrelloWIPLimits
URL de la Página de Ayuda https://github.com/NateHark/TrelloWIPLimits/issues
Idiomas Soportados 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"
}