Trello Story Point Counts
Show the count of story points (based on Screenful.com syntax) at the header of a Trello list.
Trello Story Point Countsとは何ですか?
Trello Story Point Countsはjay mcmunnによって開発されたChromeの拡張機能で、その主な機能は「Show the count of story points (based on Screenful.com syntax) at the header of a Trello list.」です。
拡張機能のスクリーンショット
Trello Story Point Counts拡張機能のCRXファイルをダウンロード
Trello Story Point Counts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
If you're a Trello user and you are using Scrum for your development team, you may also be using Screenful.com to track your velocity and burn down charts. Screenful has you enter your story point estimates in the form of '(x) This is the card title' on each card so that it can import your data. This Chrome extension will read those numbers and show you a total for the estimated points for each list in Trello so that you don't have to do the math! There is also an option for showing/hiding these totals on each Trello board, for cases where cards have not been assigned story points, or if you wish to turn off the counts for other reasons.
拡張機能の基本情報
名前 | Trello Story Point Counts |
ID | palbggkobnfbpfbjlfgkhobonepkakmd |
公式URL | https://chromewebstore.google.com/detail/trello-story-point-counts/palbggkobnfbpfbjlfgkhobonepkakmd |
説明 | Show the count of story points (based on Screenful.com syntax) at the header of a Trello list. |
ファイルサイズ | 59.18 KB |
インストール数 | 177 |
現在のバージョン | 1.0.0.8 |
最終更新日 | 2017-03-03 |
公開日 | 2017-03-03 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | jay mcmunn |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Story Point Counts", "short_name": "Trello Story Points", "description": "Show the count of story points (based on Screenful.com syntax) at the header of a Trello list.", "version": "1.0.0.8", "browser_action": { "default_icon": { "19": "img\/GreyT19.png" } }, "permissions": [ "*:\/\/*.trello.com\/*" ], "icons": { "128": "img\/GreyT.png", "16": "img\/GreyT16.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.trello.com\/*" ], "css": [ "liststyles.css" ], "js": [ "jquery-1.11.1.min.js", "jquery.waituntilexists.min.js", "mutation-summary.js", "listcount.js" ], "run at": [ "document_end" ] } ] } |