ScrummerTheodo

Adds story points, post-estimation points and card ID to Trello

ScrummerTheodo란 무엇입니까?

ScrummerTheodo은(는) scrummerTheodo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds story points, post-estimation points and card ID to Trello"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ScrummerTheodo 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds Story Points, Post-Estimation points and card IDs to Trello.

Heavily based on rickpastoor's amazing and lightning-fast Scrummer.  Use rickpastoor's Scrummer if you need subtotals inside a list, using separators, or if you don't need post-estimation points. 

Features : 
 - Pick Story Points and Post-estimation Points from inside the card.
 - Shows story points and post-estimation points for each card, a total for each list and for the board.
 - Shows the card number on the board.

Uses no external library for optimum speed.

--- Changelog 

3.0.0 : Added hour points - major refacto
2.1.6: Improved card ID design
2.1.4: Fixed bug that forced to reload the page for a new card's points number to be taken into account.
2.1.3: Fix remaining question mark bug.
2.1.2: Fix bug with ES6 overhaul
2.1.1: ES6 overhaul, more efficient way to display card number
2.1.0: Feature toggling! Click on the icon to activate/deactivate features. Also fixes a bug with commas as decimal separators, and puts 0 before 0.5 where it belongs.
2.0.4: Allow use of commas as decimal separator
2.0.3: Possibly work around an unreproduced bug where the board doesn't have a 'js-board-header' div
2.0.2: Fix question marks.                    

확장 프로그램 기본 정보

이름 ScrummerTheodo ScrummerTheodo
ID lnpiiahdfbbeaibjnghocebfkadajmdb
공식 URL https://chromewebstore.google.com/detail/scrummertheodo/lnpiiahdfbbeaibjnghocebfkadajmdb
설명 Adds story points, post-estimation points and card ID to Trello
파일 크기 62.21 KB
설치 횟수 1,705
현재 버전 3.2.1
최근 업데이트 2023-12-04
출시 날짜 2019-04-25
평점 4.83/5 총 6 개의 평점
개발자 scrummerTheodo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/theodo/scrummer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ScrummerTheodo",
    "version": "3.2.1",
    "description": "Adds story points, post-estimation points and card ID to Trello",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "scrummer.js"
            ],
            "css": [
                "scrummer.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "48": "img\/icon48.png",
            "128": "img\/icon128.png",
            "1024": "img\/icon1024.png"
        },
        "default_title": "ScrummerTheodo",
        "default_popup": "popup.html"
    }
}