-
Notifications
You must be signed in to change notification settings - Fork 1
/
vss-extension.json
76 lines (76 loc) · 1.91 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
{
"manifestVersion": 1,
"id": "tfs-wi-copy",
"version": "0.1.1",
"name": "Copy Work Item Id",
"description": "Add a simple \"Copy Id\" button to all work items. The button will copy the Id(s) of the selected work item(s) to the user's clipboard.",
"publisher": "travistx",
"public": true,
"categories": [
"Plan and track"
],
"tags": [
"copy",
"work item"
],
"content": {
"details": {
"path": "overview.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/TravisTX/tfs-wi-copy"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"contributions": [
{
"id": "copyId-work-item-menu",
"type": "ms.vss-web.action",
"description": "Sample toolbar item which updates the title of a work item",
"targets": [
"ms.vss-work-web.work-item-context-menu"
],
"properties": {
"text": "Copy Id",
"title": "Copies the workitem id to the clipboard",
"toolbarText": "Copy Id",
"uri": "copy-id.html",
"icon": "assets/copy-icon.png"
}
}
],
"scopes": [
"vso.work"
],
"files": [
{
"path": "copy-id.html",
"addressable": true
},
{
"path": "main.js",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib/VSS.SDK.min.js",
"addressable": true
},
{
"path": "assets/copy-icon.png",
"addressable": true
},
{
"path": "assets/screenshot.png",
"addressable": true
},
{
"path": "overview.md",
"addressable": true
}
]
}