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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}