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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jay mcmunn และคุณลักษณะหลักของมันคือ "Show the count of story points (based on Screenful.com syntax) at the header of a Trello list."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello Story Point Counts

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
อีเมล [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"
            ]
        }
    ]
}