Scrummer Azure Board
Add column total size in azure devops board
什么是Scrummer Azure Board?
Scrummer Azure Board是由Arnaud Dufour开发的Chrome扩展程序,该扩展的主要功能是“Add column total size in azure devops board”。
扩展截图
下载Scrummer Azure Board扩展crx文件
下载Scrummer Azure Board扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
On top of each column in azure devops board, add the sum of all sizes of cards in that column
扩展基本信息
名称 | Scrummer Azure Board |
ID | oggkfdgihjbkeacchoccbjigbebaackg |
官方URL | https://chromewebstore.google.com/detail/scrummer-azure-board/oggkfdgihjbkeacchoccbjigbebaackg |
简介 | Add column total size in azure devops board |
文件大小 | 16.68 KB |
安装次数 | 21 |
当前版本 | 1.0.3 |
更新时间 | 2021-09-23 |
上架时间 | 2020-05-11 |
开发者 | Arnaud Dufour |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/arnaud9145/azure-board-card-number |
支持的语言 | 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" ] } |