Story Point Totals for JIRA Kanban Boards

This extension totals story points in JIRA Kanban boards and puts them at the top of each column.

Co je Story Point Totals for JIRA Kanban Boards?

Story Point Totals for JIRA Kanban Boards je rozšíření Chrome vyvinuté https://noahcoffey.com, a jeho hlavní funkcí je „This extension totals story points in JIRA Kanban boards and puts them at the top of each column.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Story Point Totals for JIRA Kanban Boards

Stáhněte si soubory rozšíření Story Point Totals for JIRA Kanban 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í

                        This extension will count up story point values present in any cards contained in a JIRA Kanban (rapid board) and show the total points at the top of each column (replacing the displayed number of cards).                    

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

Název Story Point Totals for JIRA Kanban Boards Story Point Totals for JIRA Kanban Boards
ID codmglobaohfdpjjckagjaanifogeili
Oficiální URL https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili
Popis This extension totals story points in JIRA Kanban boards and puts them at the top of each column.
Velikost souboru 19.07 KB
Počet instalací 201
Aktuální Verze 0.0.2
Poslední Aktualizace 2019-07-02
Datum Vydání 2019-07-02
Hodnocení 2.00/5 Celkem 2 Hodnocení
Vývojář https://noahcoffey.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://noahcoffey.com/jira-story-points/
URL Stránky Nápovědy https://noahcoffey.com/jira-story-points/
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Story Point Totals for JIRA Kanban Boards",
    "short_name": "JIRA Story Point Totals",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.",
    "homepage_url": "https:\/\/noahcoffey.com\/jira-story-points",
    "author": "Noah Coffey",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}