Money for Trello
This extension adds a cost for each card in trello
Money for Trelloคืออะไร?
Money for Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Beinno และคุณลักษณะหลักของมันคือ "This extension adds a cost for each card in trello"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Money for Trello
ดาวน์โหลดไฟล์ส่วนขยาย Money for Trello ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension is very usefull to know every card cost for Trello. It's based on scrum points. every card should have approximate estimate in it's title like an example: (2) Testing title Cost for cards like the above example are determined based on card estimate which is 2 for the above example. Point cost can be determined via extension options page
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Money for Trello |
ID | acfcndamepdchedecnjanbdhbmhijchd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/money-for-trello/acfcndamepdchedecnjanbdhbmhijchd |
คำอธิบาย | This extension adds a cost for each card in trello |
ขนาดไฟล์ | 3.78 MB |
จำนวนการติดตั้ง | 71 |
เวอร์ชันปัจจุบัน | 1.9 |
อัปเดตครั้งล่าสุด | 2016-11-12 |
วันที่เผยแพร่ | 2016-11-12 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Beinno |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Money for Trello", "description": "This extension adds a cost for each card in trello", "version": "1.9", "web_accessible_resources": [ "css\/*", "img\/*.png" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/www.trello.com\/*", "https:\/\/www.trello.com\/*", "http:\/\/trello.com\/*", "https:\/\/trello.com\/*", "https:\/\/*.cloudfront.net\/*", "file:\/\/\/*\/*.*" ], "js": [ "js\/libs\/jquery\/dist\/jquery.min.js", "js\/main.js" ], "css": [ "css\/main.css" ], "run_at": "document_end" } ], "background": { "page": "background.html", "persistent": true }, "options_page": "options.html" } |