Money for Trello
This extension adds a cost for each card in trello
Money for Trello là gì?
Money for Trello là một tiện ích mở rộng Chrome được phát triển bởi Beinno, và tính năng chính của nó là "This extension adds a cost for each card in trello".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Money for Trello
Tải xuống các tệp mở rộng Money for Trello dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Money for Trello |
ID | acfcndamepdchedecnjanbdhbmhijchd |
URL Chính Thức | https://chromewebstore.google.com/detail/money-for-trello/acfcndamepdchedecnjanbdhbmhijchd |
Mô tả | This extension adds a cost for each card in trello |
Kích Thước Tệp | 3.78 MB |
Số Lần Cài Đặt | 71 |
Phiên Bản Hiện Tại | 1.9 |
Cập Nhật Lần Cuối | 2016-11-12 |
Ngày Phát Hành | 2016-11-12 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Beinno |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |