Scrummer Azure Board
Add column total size in azure devops board
Wat is Scrummer Azure Board?
Scrummer Azure Board is een Chrome-extensie ontwikkeld door Arnaud Dufour, en de belangrijkste functie is "Add column total size in azure devops board".
Extensie Screenshots
Download het CRX-bestand van de extensie Scrummer Azure Board
Download Scrummer Azure Board-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
On top of each column in azure devops board, add the sum of all sizes of cards in that column
Basisinformatie over de Extensie
Naam | Scrummer Azure Board |
ID | oggkfdgihjbkeacchoccbjigbebaackg |
Officiële URL | https://chromewebstore.google.com/detail/scrummer-azure-board/oggkfdgihjbkeacchoccbjigbebaackg |
Beschrijving | Add column total size in azure devops board |
Bestandsgrootte | 16.68 KB |
Aantal Installaties | 21 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2021-09-23 |
Publicatiedatum | 2020-05-11 |
Ontwikkelaar | Arnaud Dufour |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/arnaud9145/azure-board-card-number |
Ondersteunde Talen | 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" ] } |