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.

Cos'è Story Point Totals for JIRA Kanban Boards?

Story Point Totals for JIRA Kanban Boards è un'estensione di Chrome sviluppata da https://noahcoffey.com, e la sua funzione principale è "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Story Point Totals for JIRA Kanban Boards

Scarica i file di estensione Story Point Totals for JIRA Kanban 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

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

Informazioni di Base sull'Estensione

Nome Story Point Totals for JIRA Kanban Boards Story Point Totals for JIRA Kanban Boards
ID codmglobaohfdpjjckagjaanifogeili
URL Ufficiale https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili
Descrizione This extension totals story points in JIRA Kanban boards and puts them at the top of each column.
Dimensione del File 19.07 KB
Conteggio Installazioni 201
Versione Corrente 0.0.2
Ultimo Aggiornamento 2019-07-02
Data di Pubblicazione 2019-07-02
Valutazione 2.00/5 Totale 2 Valutazioni
Sviluppatore https://noahcoffey.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://noahcoffey.com/jira-story-points/
URL della Pagina di Aiuto https://noahcoffey.com/jira-story-points/
Lingue Supportate 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"
            ]
        }
    ]
}