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 |
Eメール | [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\/" ] } |