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 là gì?

Trello Story Point Counts là một tiện ích mở rộng Chrome được phát triển bởi jay mcmunn, và tính năng chính của nó là "Show the count of story points (based on Screenful.com syntax) at the header of a Trello list.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello Story Point Counts

Tải xuống các tệp mở rộng Trello Story Point Counts 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello Story Point Counts Trello Story Point Counts
ID palbggkobnfbpfbjlfgkhobonepkakmd
URL Chính Thức https://chromewebstore.google.com/detail/trello-story-point-counts/palbggkobnfbpfbjlfgkhobonepkakmd
Mô tả Show the count of story points (based on Screenful.com syntax) at the header of a Trello list.
Kích Thước Tệp 59.18 KB
Số Lần Cài Đặt 177
Phiên Bản Hiện Tại 1.0.0.8
Cập Nhật Lần Cuối 2017-03-03
Ngày Phát Hành 2017-03-03
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển jay mcmunn
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}