forked from ryanjones/pcards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
84 lines (84 loc) · 1.74 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
{
"manifestVersion": 1,
"id": "pcards",
"version": "1.0.78",
"name": "Pretty Cards",
"scopes": ["vso.work", "vso.extension.data_write"],
"description": "Print work items from the context menu.",
"publisher": "BLZB0B",
"public": false,
"icons": {
"default": "static/img/logo.png"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"categories": ["Azure Boards"],
"tags": ["print", "work items"],
"content": {
"details": {
"path": "details.md"
},
"license": {
"path": "LICENSE"
}
},
"links": {
"support": {
"uri": "https://github.com/BLZB0B/pcards/issues"
},
"repository": {
"uri": "https://github.com/BLZB0B/pcards"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/BLZB0B/pcards"
},
"branding": {
"color": "rgb(255, 255, 255)",
"theme": "light"
},
"files": [
{
"path": "static/img",
"addressable": true
},
{
"path": "dist",
"addressable": true
},
{
"path": "static/pcards.html",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
},
{
"path": "node_modules/office-ui-fabric-js/dist/js",
"addressable": true,
"packagePath": "lib/js"
},
{
"path": "node_modules/office-ui-fabric-js/dist/css",
"addressable": true,
"packagePath": "lib/css"
}
],
"contributions": [
{
"id": "print-work-item",
"type": "ms.vss-web.action",
"description": "Print a work item.",
"targets": ["ms.vss-work-web.work-item-context-menu"],
"properties": {
"uri": "static/pcards.html"
}
}
]
}