Estimations sum for Jira boards

This extension sums up the remaining time estimates shown in a scrum board of Jira

Estimations sum for Jira boards क्या है?

Estimations sum for Jira boards drabiger द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension sums up the remaining time estimates shown in a scrum board of Jira"।

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

screenshot

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

crx प्रारूप में Estimations sum for Jira boards एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Atlassian Jira's has a feature to capture estimations and remaining estimates in issues. You can configure Jira to show these numbers on the issue cards in scrum board.

I found it useful to see the sum of all issues for each column. Unfortunately, Jira lacks such a feature.

When turned on, this Chrome extension will calculate the sum of "remaining estimates" for each column, taking into account all issues being displayed. If you apply a filter, the sum will be calculated only for the issues matching your filter settings.

With version 1.00, the plugin additionally shows the number of cards, per column, in brackets. This additional feature was added by Jan Topiński (simcha).

The extension was tested with Jira cloud and with Jira 7.3.8. Happy to get your feedback!                    

एक्सटेंशन की मूल जानकारी

नाम Estimations sum for Jira boards Estimations sum for Jira boards
ID mmbocjepfajlidapdnikdjebbdfjgbki
आधिकारिक URL https://chromewebstore.google.com/detail/estimations-sum-for-jira/mmbocjepfajlidapdnikdjebbdfjgbki
विवरण This extension sums up the remaining time estimates shown in a scrum board of Jira
फ़ाइल का आकार 212 KB
स्थापना संख्या 675
वर्तमान संस्करण 1.00
अंतिम अपडेट 2020-04-07
प्रकाशन तिथि 2020-04-05
रेटिंग 4.50/5 कुल 8 रेटिंग्स
डेवलपर drabiger
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/drabiger/estimationsSumForJira
सहायता पृष्ठ URL https://github.com/drabiger/estimationsSumForJira
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Estimations sum for Jira boards",
    "description": "This extension sums up the remaining time estimates shown in a scrum board of Jira",
    "version": "1.00",
    "short_name": "Jira Estimations Sum",
    "author": "Dirk R\u00e4biger",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/secure\/RapidBoard.jspa?*",
                "https:\/\/*\/secure\/RapidBoard.jspa?*"
            ],
            "css": [
                "bootstrap.min.css",
                "estimates.css"
            ],
            "js": [
                "jquery.min.js",
                "estimates.js"
            ],
            "run_at": "document_end"
        }
    ]
}