-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvss-extension.json
More file actions
58 lines (58 loc) · 1.32 KB
/
vss-extension.json
File metadata and controls
58 lines (58 loc) · 1.32 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
{
"manifestVersion": 1,
"id": "ado-timeentries",
"publisher": "blissapps",
"version": "1.0.0",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"name": "ADO Time Entries",
"description": "Log time entries (user, date, hours & minutes) directly on Azure DevOps work items.",
"public": false,
"links": {
"repository": {
"uri": "https://github.com/blissapps/ado-timeentries"
},
"homepage": {
"uri": "https://www.blissapplications.com"
}
},
"categories": ["Azure Boards"],
"icons": {
"default": "images/extension-icon.png"
},
"files": [
{
"path": "dist",
"addressable": true
},
{
"path": "src/time-tracker.html",
"addressable": true
},
{
"path": "images",
"addressable": true
}
],
"scopes": ["vso.work", "vso.work_write"],
"contributions": [
{
"id": "time-log-page",
"type": "ms.vss-work-web.work-item-form-page",
"description": "Adds a Time Log tab to all work item forms",
"targets": ["ms.vss-work-web.work-item-form"],
"properties": {
"name": "Time Log",
"uri": "src/time-tracker.html"
}
}
],
"branding": {
"color": "rgb(22, 106, 195)",
"theme": "dark"
},
"tags": ["time tracking", "time log", "work items", "timesheets"]
}