Kanban WIP for Trello

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

What is Kanban WIP for Trello?

Kanban WIP for Trello is a Chrome extension developed by NateHark, and its main feature is "Adds work-in-progress limits to Trello lists supporting a Kanban workflow.".

Extension Screenshots

screenshot

Download Kanban WIP for Trello Extension CRX File

Download Kanban WIP for Trello extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Kanban WIP for Trello Kanban WIP for Trello
ID oekefjibcnongmmmmkdiofgeppfkmdii
Official URL https://chromewebstore.google.com/detail/kanban-wip-for-trello/oekefjibcnongmmmmkdiofgeppfkmdii
Description Adds work-in-progress limits to Trello lists supporting a Kanban workflow.
File Size 31.8 KB
Installation Count 9,432
Current Version 1.0.3
Last Updated 2017-08-02
Publish Date 2017-08-01
Rating 4.39/5 Total 56 Ratings
Developer NateHark
Payment Type free
Extension Website https://github.com/NateHark/TrelloWIPLimits
Help Page URL https://github.com/NateHark/TrelloWIPLimits/issues
Supported Languages 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"
}