ScrummerTheodo

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

ScrummerTheodo là gì?

ScrummerTheodo là một tiện ích mở rộng Chrome được phát triển bởi scrummerTheodo, và tính năng chính của nó là "Adds story points, post-estimation points and card ID to Trello".

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

screenshot
screenshot

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

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

                        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.                    

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

Tên ScrummerTheodo ScrummerTheodo
ID lnpiiahdfbbeaibjnghocebfkadajmdb
URL Chính Thức https://chromewebstore.google.com/detail/scrummertheodo/lnpiiahdfbbeaibjnghocebfkadajmdb
Mô tả Adds story points, post-estimation points and card ID to Trello
Kích Thước Tệp 62.21 KB
Số Lần Cài Đặt 1,705
Phiên Bản Hiện Tại 3.2.1
Cập Nhật Lần Cuối 2023-12-04
Ngày Phát Hành 2019-04-25
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển scrummerTheodo
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/theodo/scrummer
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}