Kanban WIP for Trello

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

Was ist Kanban WIP for Trello?

Kanban WIP for Trello ist eine Chrome-Erweiterung, die von NateHark entwickelt wurde, und ihr Hauptmerkmal ist "Adds work-in-progress limits to Trello lists supporting a Kanban workflow.".

Erweiterungsscreenshots

screenshot

Kanban WIP for Trello-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kanban WIP for Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Kanban WIP for Trello Kanban WIP for Trello
ID oekefjibcnongmmmmkdiofgeppfkmdii
Offizielle URL https://chromewebstore.google.com/detail/kanban-wip-for-trello/oekefjibcnongmmmmkdiofgeppfkmdii
Beschreibung Adds work-in-progress limits to Trello lists supporting a Kanban workflow.
Dateigröße 31.8 KB
Installationsanzahl 9,432
Aktuelle Version 1.0.3
Letztes Update 2017-08-02
Veröffentlichungsdatum 2017-08-01
Bewertung 4.39/5 Insgesamt 56 Bewertungen
Entwickler NateHark
Zahlungsart free
Erweiterungswebsite https://github.com/NateHark/TrelloWIPLimits
Hilfeseite URL https://github.com/NateHark/TrelloWIPLimits/issues
Unterstützte Sprachen 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"
}