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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον drabiger, και η κύρια λειτουργία του είναι "This extension sums up the remaining time estimates shown in a scrum board of Jira".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Estimations sum for Jira boards

Λήψη αρχείων επέκτασης Estimations sum for Jira boards σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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