forked from ostreifel/Board-Group
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
123 lines (123 loc) · 3.15 KB
/
vss-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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"manifestVersion": 1,
"id": "board-group",
"version": "2.5.158",
"name": "Board Group",
"scopes": [ "vso.work", "vso.work_write" ],
"description": "Places a group on the work item form showing the current board.",
"publisher": "ottostreifel",
"icons": {
"default": "dist/img/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"restrictedTo": [
"Member",
"Public",
"Anonymous"
],
"tags": [
"Kanban",
"Board",
"Agile",
"Work Item",
"Work Item Group"
],
"content": {
"details": {
"path": "details.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/ostreifel/Board-Group"
},
"branding": {
"color": "rgb(220, 235, 252)",
"theme": "light"
},
"files": [
{
"path": "dist/img",
"addressable": true
},
{
"path": "dist/scripts",
"addressable": true
},
{
"path": "dist/boardGroup.html",
"addressable": true
},
{
"path": "dist/boardContext.html",
"addressable": true
},
{
"path": "dist/bulkBoardContext.html",
"addressable": true
},
{
"path": "dist/boardGroup.css",
"addressable": true
}
],
"categories": [
"Plan and track"
],
"contributions": [
{
"id": "board-work-item-form-group",
"type": "ms.vss-work-web.work-item-form-group",
"description": "Custom work item form group",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Board",
"uri": "boardGroup.html",
"height": 145
}
},
{
"id": "board-context-menu",
"type": "ms.vss-web.action-provider",
"description": "Edit board column from board card",
"targets": [
"ms.vss-work-web.backlog-board-card-item-menu",
"ms.vss-work-web.work-item-context-menu"
],
"properties": {
"name": "Board context menu",
"uri": "boardContext.html"
}
},
{
"id": "board-query-bulk-edit",
"type": "ms.vss-web.action-provider",
"description": "",
"targets": [
"ms.vss-work-web.query-result-work-item-menu"
],
"properties": {
"group": "contributed",
"uri": "bulkBoardContext.html"
}
},
{
"id": "board-backlogs-bulk-edit",
"type": "ms.vss-web.action-provider",
"description": "",
"targets": [
"ms.vss-work-web.backlog-item-menu"
],
"properties": {
"group": "contributed",
"uri": "bulkBoardContext.html"
}
}
]
}