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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://finalem.com และคุณลักษณะหลักของมันคือ "Shows card count in every list, adds limit for Kanban WIP and allows to combine two lists together"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kanbanello for Trello
ดาวน์โหลดไฟล์ส่วนขยาย 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\/" ] } |