ScrummerTheodo

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

ScrummerTheodo क्या है?

ScrummerTheodo scrummerTheodo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds story points, post-estimation points and card ID to Trello"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ScrummerTheodo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}