Jira - Estimations sum for columns in boards

This extension sums up the estimates for each column in both Scrum and Kanban boards.

Cos'è Jira - Estimations sum for columns in boards?

Jira - Estimations sum for columns in boards è un'estensione di Chrome sviluppata da Per Lundström, e la sua funzione principale è "This extension sums up the estimates for each column in both Scrum and Kanban boards.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Jira - Estimations sum for columns in boards

Scarica i file di estensione Jira - Estimations sum for columns in boards in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Jira - Estimations sum for columns in boards

Requirements:
- "Global time tracking settings/Time display format" can be either "days" or "hours".
- The project needs to be "company-managed".
- The Scrum board needs to show only one estimation field. Either that from "Board settings/Estimation" or "Board settings/Card layout".
- The Kanban board needs to show only one estimation field, which you can find under "Board Settings/Card layout".                    

Informazioni di Base sull'Estensione

Nome Jira - Estimations sum for columns in boards Jira - Estimations sum for columns in boards
ID dfpbfekaakbmmlpkjghimjlconpnfmbl
URL Ufficiale https://chromewebstore.google.com/detail/jira-estimations-sum-for/dfpbfekaakbmmlpkjghimjlconpnfmbl
Descrizione This extension sums up the estimates for each column in both Scrum and Kanban boards.
Dimensione del File 148 KB
Conteggio Installazioni 38
Versione Corrente 1.3
Ultimo Aggiornamento 2021-10-16
Data di Pubblicazione 2021-04-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Per Lundström
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.linkedin.com/in/per-lundstr%C3%B6m-7a7bb0a4/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira - Estimations sum for columns in boards",
    "description": "This extension sums up the estimates for each column in both Scrum and Kanban boards.",
    "version": "1.3",
    "short_name": "Jira - Estimations sums",
    "author": "Per Lundstr\u00f6m",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/secure\/RapidBoard.jspa?*",
                "https:\/\/*\/secure\/RapidBoard.jspa?*",
                "https:\/\/*\/jira\/software\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "js\/jquery\/jquery.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}