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 to jest Story Point Totals for JIRA Kanban Boards?

Story Point Totals for JIRA Kanban Boards to rozszerzenie Chrome opracowane przez https://noahcoffey.com, a jego główną funkcją jest „This extension totals story points in JIRA Kanban boards and puts them at the top of each column.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Story Point Totals for JIRA Kanban Boards

Pobierz pliki rozszerzeń Story Point Totals for JIRA Kanban 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

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

Podstawowe informacje o rozszerzeniu

Nazwa Story Point Totals for JIRA Kanban Boards Story Point Totals for JIRA Kanban Boards
ID codmglobaohfdpjjckagjaanifogeili
Oficjalny URL https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili
Opis This extension totals story points in JIRA Kanban boards and puts them at the top of each column.
Rozmiar pliku 19.07 KB
Liczba instalacji 201
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2019-07-02
Data Publikacji 2019-07-02
Ocena 2.00/5 Łącznie 2 Oceny
Deweloper https://noahcoffey.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://noahcoffey.com/jira-story-points/
Adres URL Strony Pomocy https://noahcoffey.com/jira-story-points/
Obsługiwane Języki 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"
            ]
        }
    ]
}