ScrummerTheodo

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

ScrummerTheodoคืออะไร?

ScrummerTheodo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย scrummerTheodo และคุณลักษณะหลักของมันคือ "Adds story points, post-estimation points and card ID to Trello"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ScrummerTheodo

ดาวน์โหลดไฟล์ส่วนขยาย ScrummerTheodo ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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