Scrummer Azure Board
Add column total size in azure devops board
Cos'è Scrummer Azure Board?
Scrummer Azure Board è un'estensione di Chrome sviluppata da Arnaud Dufour, e la sua funzione principale è "Add column total size in azure devops board".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Scrummer Azure Board
Scarica i file di estensione Scrummer Azure Board 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
On top of each column in azure devops board, add the sum of all sizes of cards in that column
Informazioni di Base sull'Estensione
Nome | Scrummer Azure Board |
ID | oggkfdgihjbkeacchoccbjigbebaackg |
URL Ufficiale | https://chromewebstore.google.com/detail/scrummer-azure-board/oggkfdgihjbkeacchoccbjigbebaackg |
Descrizione | Add column total size in azure devops board |
Dimensione del File | 16.68 KB |
Conteggio Installazioni | 21 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2021-09-23 |
Data di Pubblicazione | 2020-05-11 |
Sviluppatore | Arnaud Dufour |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/arnaud9145/azure-board-card-number |
Lingue Supportate | 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" ] } |