Kanban WIP for Trello
Adds work-in-progress limits to Trello lists supporting a Kanban workflow.
Co to jest Kanban WIP for Trello?
Kanban WIP for Trello to rozszerzenie Chrome opracowane przez NateHark, a jego główną funkcją jest „Adds work-in-progress limits to Trello lists supporting a Kanban workflow.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Kanban WIP for Trello
Pobierz pliki rozszerzeń Kanban WIP for Trello w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Kanban WIP for Trello |
ID | oekefjibcnongmmmmkdiofgeppfkmdii |
Oficjalny URL | https://chromewebstore.google.com/detail/kanban-wip-for-trello/oekefjibcnongmmmmkdiofgeppfkmdii |
Opis | Adds work-in-progress limits to Trello lists supporting a Kanban workflow. |
Rozmiar pliku | 31.8 KB |
Liczba instalacji | 9,432 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2017-08-02 |
Data Publikacji | 2017-08-01 |
Ocena | 4.39/5 Łącznie 56 Oceny |
Deweloper | NateHark |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/NateHark/TrelloWIPLimits |
Adres URL Strony Pomocy | https://github.com/NateHark/TrelloWIPLimits/issues |
Obsługiwane Języki | 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" } |