This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
forked from cschleiden/azure-boards-estimate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
azure-devops-extension.json
84 lines (84 loc) · 2.26 KB
/
azure-devops-extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"manifestVersion": 1,
"id": "estimate",
"version": "2.6.0",
"name": "Estimate",
"description": "Planning Poker in Azure Boards.",
"publisher": "hangy",
"scopes": ["vso.project", "vso.work", "vso.work_write"],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"demands": ["api-version/5.1"],
"galleryFlags": [],
"tags": ["Planning Poker", "Estimate"],
"icons": {
"default": "marketplace/icon-light.png",
"branding": "marketplace/icon-light.png"
},
"content": {
"details": {
"path": "marketplace/overview.md"
},
"license": {
"path": "marketplace/license.md"
}
},
"repository": {
"type": "git",
"url": "https://github.com/hangy/azure-boards-estimate"
},
"links": {
"support": {
"url": "mailto:hangy@hangy.de"
}
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"categories": ["Azure Boards"],
"files": [
{
"path": "marketplace",
"addressable": true
},
{
"path": "build",
"addressable": true
}
],
"contributions": [
{
"id": "estimate-hub",
"type": "ms.vss-web.hub",
"targets": ["ms.vss-work-web.work-hub-group"],
"properties": {
"name": "Estimate",
"order": 100,
"uri": "build/index.html",
"icon": {
"light": "marketplace/icon-light.png",
"dark": "marketplace/icon-dark.png"
}
}
},
{
"id": "estimate-context-menu-action",
"type": "ms.vss-web.action",
"targets": [
"ms.vss-work-web.backlog-item-menu",
"ms.vss-work-web.query-result-work-item-menu"
],
"properties": {
"text": "Estimate work item(s)",
"title": "Start estimation session",
"group": "actions",
"uri": "build/index.html?context",
"registeredObjectId": "estimate-context-menu"
}
}
]
}