Jira - Estimations sum for columns in boards

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

Co je Jira - Estimations sum for columns in boards?

Jira - Estimations sum for columns in boards je rozšíření Chrome vyvinuté Per Lundström, a jeho hlavní funkcí je „This extension sums up the estimates for each column in both Scrum and Kanban boards.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Jira - Estimations sum for columns in boards

Stáhněte si soubory rozšíření Jira - Estimations sum for columns in boards ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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".                    

Základní Informace o Rozšíření

Název Jira - Estimations sum for columns in boards Jira - Estimations sum for columns in boards
ID dfpbfekaakbmmlpkjghimjlconpnfmbl
Oficiální URL https://chromewebstore.google.com/detail/jira-estimations-sum-for/dfpbfekaakbmmlpkjghimjlconpnfmbl
Popis This extension sums up the estimates for each column in both Scrum and Kanban boards.
Velikost souboru 148 KB
Počet instalací 38
Aktuální Verze 1.3
Poslední Aktualizace 2021-10-16
Datum Vydání 2021-04-15
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Per Lundström
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.linkedin.com/in/per-lundstr%C3%B6m-7a7bb0a4/
Podporované Jazyky 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"
        }
    ]
}