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 क्या है?
OGD's enhancements for Trello Jauco Noordzij द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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. *…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में OGD's enhancements for Trello एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | OGD's enhancements for Trello |
ID | ionfplcjpbmgjipcpppgakhkbldeopmd |
आधिकारिक URL | https://chromewebstore.google.com/detail/ogds-enhancements-for-tre/ionfplcjpbmgjipcpppgakhkbldeopmd |
विवरण | 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. *… |
फ़ाइल का आकार | 212 KB |
स्थापना संख्या | 214 |
वर्तमान संस्करण | 7 |
अंतिम अपडेट | 2014-05-14 |
प्रकाशन तिथि | 2014-05-14 |
रेटिंग | 4.13/5 कुल 8 रेटिंग्स |
डेवलपर | Jauco Noordzij |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |