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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show the count of story points (based on Screenful.com syntax) at the header of a Trello list."।

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

screenshot

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

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