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.”。

擴展截圖

screenshot

下載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 Trello Story Point Counts
ID palbggkobnfbpfbjlfgkhobonepkakmd
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}