Scrummer Azure Board

Add column total size in azure devops board

Qu'est-ce que Scrummer Azure Board ?

Scrummer Azure Board est une extension Chrome développée par Arnaud Dufour, et sa fonction principale est "Add column total size in azure devops board".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Scrummer Azure Board

Téléchargez les fichiers d'extension Scrummer Azure Board 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

                        On top of each column in azure devops board, add the sum of all sizes of cards in that column                    

Informations de Base sur l'Extension

Nom Scrummer Azure Board Scrummer Azure Board
ID oggkfdgihjbkeacchoccbjigbebaackg
URL Officiel https://chromewebstore.google.com/detail/scrummer-azure-board/oggkfdgihjbkeacchoccbjigbebaackg
Description Add column total size in azure devops board
Taille du Fichier 16.68 KB
Nombre d'Installations 21
Version Actuelle 1.0.3
Dernière Mise à Jour 2021-09-23
Date de Publication 2020-05-11
Développeur Arnaud Dufour
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/arnaud9145/azure-board-card-number
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scrummer Azure Board",
    "version": "1.0.3",
    "description": "Add column total size in azure devops board",
    "icons": {
        "16": ".\/assets\/icon\/icon16.png",
        "48": ".\/assets\/icon\/icon48.png",
        "128": ".\/assets\/icon\/icon128.png"
    },
    "browser_action": {
        "default_title": "Add total points",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dev.azure.com\/**\/board\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "main.js"
            ]
        }
    ],
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ]
}