Scrummer Azure Board
Add column total size in azure devops board
What is Scrummer Azure Board?
Scrummer Azure Board is a Chrome extension developed by Arnaud Dufour, and its main feature is "Add column total size in azure devops board".
Extension Screenshots
Download Scrummer Azure Board Extension CRX File
Download Scrummer Azure Board extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
On top of each column in azure devops board, add the sum of all sizes of cards in that column
Extension Basic Information
Name | Scrummer Azure Board |
ID | oggkfdgihjbkeacchoccbjigbebaackg |
Official URL | https://chromewebstore.google.com/detail/scrummer-azure-board/oggkfdgihjbkeacchoccbjigbebaackg |
Description | Add column total size in azure devops board |
File Size | 16.68 KB |
Installation Count | 21 |
Current Version | 1.0.3 |
Last Updated | 2021-09-23 |
Publish Date | 2020-05-11 |
Developer | Arnaud Dufour |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/arnaud9145/azure-board-card-number |
Supported Languages | 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" ] } |