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.

Qu'est-ce que Story Point Totals for JIRA Kanban Boards ?

Story Point Totals for JIRA Kanban Boards est une extension Chrome développée par https://noahcoffey.com, et sa fonction principale est "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Story Point Totals for JIRA Kanban Boards

Téléchargez les fichiers d'extension Story Point Totals for JIRA Kanban Boards au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Story Point Totals for JIRA Kanban Boards Story Point Totals for JIRA Kanban Boards
ID codmglobaohfdpjjckagjaanifogeili
URL Officiel https://chromewebstore.google.com/detail/story-point-totals-for-ji/codmglobaohfdpjjckagjaanifogeili
Description This extension totals story points in JIRA Kanban boards and puts them at the top of each column.
Taille du Fichier 19.07 KB
Nombre d'Installations 201
Version Actuelle 0.0.2
Dernière Mise à Jour 2019-07-02
Date de Publication 2019-07-02
Évaluation 2.00/5 Total 2 Évaluations
Développeur https://noahcoffey.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://noahcoffey.com/jira-story-points/
URL de la Page d'Aide https://noahcoffey.com/jira-story-points/
Langues Prises en Charge 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"
            ]
        }
    ]
}