-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvss-extension.json
More file actions
71 lines (71 loc) · 1.44 KB
/
vss-extension.json
File metadata and controls
71 lines (71 loc) · 1.44 KB
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
{
"$schema": "http://json-schema.org/vss-extension",
"manifestVersion": 1,
"id": "timetracker-extension",
"version": "1.5.4",
"name": "Time Tracker",
"description": "Simple time tracking for user stories with reporting by user, epic, tag and date range",
"publisher": "miguelnicolas",
"categories": ["Azure Boards"],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "static/icon.png"
},
"content": {
"details": {
"path": "README.md"
}
},
"files": [
{
"path": "src",
"addressable": true
},
{
"path": "static",
"addressable": true
},
{
"path": "lib",
"addressable": true
},
{
"path": "publicimages",
"addressable": true
}
],
"contributions": [
{
"id": "time-entry-work-item-form",
"type": "ms.vss-work-web.work-item-form-page",
"targets": [
"ms.vss-work-web.work-item-form"
],
"properties": {
"name": "Time Tracking",
"uri": "src/time-entry.html"
}
},
{
"id": "time-report-hub",
"type": "ms.vss-web.hub",
"targets": [
"ms.vss-work-web.work-hub-group"
],
"properties": {
"name": "Time Reports",
"uri": "src/time-report.html",
"icon": "static/icon.png"
}
}
],
"scopes": [
"vso.work",
"vso.work_write",
"vso.extension.data_write"
]
}