Kanbanello for Trello
Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together
Qu'est-ce que Kanbanello for Trello ?
Kanbanello for Trello est une extension Chrome développée par https://finalem.com, et sa fonction principale est "Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Kanbanello for Trello
Téléchargez les fichiers d'extension Kanbanello for Trello au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Features: - shows the number of cards in every list in Trello - filters out divider cards containing two or more =,-,+ or _ characters - support for Kanban WIP (just add WIP limit to list name in square brackets) - support list joining (for example, add [0-] to left list title and add [-5] to right list for combine two lists together and set limit 5 for them)
Informations de Base sur l'Extension
Nom | Kanbanello for Trello |
ID | onkejpdhplmfiiafhkjjfalenddohccb |
URL Officiel | https://chromewebstore.google.com/detail/kanbanello-for-trello/onkejpdhplmfiiafhkjjfalenddohccb |
Description | Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together |
Taille du Fichier | 11.55 KB |
Nombre d'Installations | 816 |
Version Actuelle | 0.0.8 |
Dernière Mise à Jour | 2017-01-24 |
Date de Publication | 2017-01-24 |
Évaluation | 4.44/5 Total 9 Évaluations |
Développeur | https://finalem.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "short_name": "__MSG_extName__", "version": "0.0.8", "manifest_version": 2, "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "js\/app.js" ], "css": [ "css\/style.css" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "images\/*.png" ], "permissions": [ "storage", "https:\/\/trello.com\/" ] } |