Estimations sum for Jira boards

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

Co to jest Estimations sum for Jira boards?

Estimations sum for Jira boards to rozszerzenie Chrome opracowane przez drabiger, a jego główną funkcją jest „This extension sums up the remaining time estimates shown in a scrum board of Jira”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Estimations sum for Jira boards

Pobierz pliki rozszerzeń Estimations sum for Jira boards w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Estimations sum for Jira boards Estimations sum for Jira boards
ID mmbocjepfajlidapdnikdjebbdfjgbki
Oficjalny URL https://chromewebstore.google.com/detail/estimations-sum-for-jira/mmbocjepfajlidapdnikdjebbdfjgbki
Opis This extension sums up the remaining time estimates shown in a scrum board of Jira
Rozmiar pliku 212 KB
Liczba instalacji 675
Aktualna Wersja 1.00
Ostatnia Aktualizacja 2020-04-07
Data Publikacji 2020-04-05
Ocena 4.50/5 Łącznie 8 Oceny
Deweloper drabiger
Typ Płatności free
Strona Rozszerzenia https://github.com/drabiger/estimationsSumForJira
Adres URL Strony Pomocy https://github.com/drabiger/estimationsSumForJira
Obsługiwane Języki 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"
        }
    ]
}