Kanbanello for Trello
Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together
什么是Kanbanello for Trello?
Kanbanello for Trello是由https://finalem.com开发的Chrome扩展程序,该扩展的主要功能是“Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together”。
扩展截图
下载Kanbanello for Trello扩展crx文件
下载Kanbanello for Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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)
扩展基本信息
名称 | Kanbanello for Trello |
ID | onkejpdhplmfiiafhkjjfalenddohccb |
官方URL | https://chromewebstore.google.com/detail/kanbanello-for-trello/onkejpdhplmfiiafhkjjfalenddohccb |
简介 | Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together |
文件大小 | 11.55 KB |
安装次数 | 816 |
当前版本 | 0.0.8 |
更新时间 | 2017-01-24 |
上架时间 | 2017-01-24 |
评分 | 4.44/5 共9次评分 |
开发者 | https://finalem.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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\/" ] } |