OGD's enhancements for Trello
An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. *…
OGD's enhancements for Trello là gì?
OGD's enhancements for Trello là một tiện ích mở rộng Chrome được phát triển bởi Jauco Noordzij, và tính năng chính của nó là "An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. *…".
Ả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 OGD's enhancements for Trello
Tải xuống các tệp mở rộng OGD's enhancements 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
An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. * shows points typed between parens. (e.g. "improve the world (2)") * It dims cards that have no points assigned (So everyone's aware that those tasks aren't accounted for in the totals) * You can use '?' to indicate that the count is not known yet * If a list has a '?' card it's point total will end in '?' as well * large numbers are presented in red * Presents card that have a title surrounded by three stars like: "***card title***" as "separator" cards. Use labels to color them. * Shows the board description using a button that is more discoverable than the trello default * Allows you to put (B) (I) (D) next to a list title (for indicating (B)acklog, (I)n work and (D)one. It shows lists that are backlog or done using a darker color Note: * Doesn't have the point picker in the trello card
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | OGD's enhancements for Trello |
ID | ionfplcjpbmgjipcpppgakhkbldeopmd |
URL Chính Thức | https://chromewebstore.google.com/detail/ogds-enhancements-for-tre/ionfplcjpbmgjipcpppgakhkbldeopmd |
Mô tả | An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. *… |
Kích Thước Tệp | 212 KB |
Số Lần Cài Đặt | 214 |
Phiên Bản Hiện Tại | 7 |
Cập Nhật Lần Cuối | 2014-05-14 |
Ngày Phát Hành | 2014-05-14 |
Đánh Giá | 4.13/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Jauco Noordzij |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OGD's enhancements for Trello", "version": "7", "description": "", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "jquery-1.7.1.min.js", "mutation_summary.js", "trelloscrum.js" ], "css": [ "trelloscrum.css" ] } ], "background": { "scripts": [ "showPageAction.js" ] }, "permissions": [ "tabs" ], "page_action": { "default_icon": { "19": "images\/ogd-trello19.png", "38": "images\/ogd-trello38.png" }, "default_title": "Board settings", "default_popup": "popup.html" }, "manifest_version": 2, "icons": { "128": "images\/ogd-trello128.png" } } |