-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
132 lines (132 loc) · 3.87 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
124
125
126
127
128
129
130
131
132
{
"manifestVersion": 1,
"id": "vsts-extensions-team-activity-feed",
"version": "1.0.8",
"name": "Team Activity Feed",
"description": "Configure a feed that lets your team know when builds finish, source code is checked in, and work items are updated.",
"publisher": "arielrotter-aboyoun",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "src/resources/img/logo.png"
},
"categories": [
"Plan and track"
],
"tags": [
"dashboard",
"notification notifications",
"event events",
"activity activities",
"feed"
],
"screenshots": [
{
"path": "src/resources/img/screenshot1.png"
}
],
"content": {
"details": {
"path": "src/resources/img/overview.md"
},
"license": {
"path": "LICENSE"
}
},
"links": {
"learn": {
"uri": "https://github.com/DroppingDonuts/Team-Activity-Feed"
}
},
"branding": {
"color": "#6bc5e1",
"theme": "light"
},
"contributions": [
{
"id": "FeedWidget",
"type": "ms.vss-dashboards-web.widget",
"targets": [
"ms.vss-dashboards-web.widget-catalog",
".FeedWidget.Configuration"
],
"properties": {
"name": "Team Activity Feed",
"description": "Configure a feed that lets your team know when builds finish, source code is checked in, and work items are updated.",
"catalogIconUrl:": "src/resources/img/CatalogIcon.png",
"previewImageUrl": "src/resources/img/CatalogIcon.png",
"uri": "src/main.html",
"isNameConfigurable": true,
"supportedSizes": [
{
"rowSpan": 3,
"columnSpan": 2
},
{
"rowSpan": 2,
"columnSpan": 2
},
{
"rowSpan": 4,
"columnSpan": 2
}
],
"supportedScopes": ["project_team"]
}
},
{
"id": "FeedWidget.Configuration",
"type": "ms.vss-dashboards-web.widget-configuration",
"targets": [ "ms.vss-dashboards-web.widget-configuration" ],
"properties": {
"name": "FeedWidget Configuration",
"description": "Configures FeedWidget",
"uri": "src/configuration.html"
}
}
],
"files": [
{
"path": "src/main.html", "addressable": true
},
{
"path": "src/configuration.html", "addressable": true
},
{
"path": "src/scripts/configuration.js", "addressable": true
},
{
"path": "lib", "addressable": true
},
{
"path": "src/utils", "addressable": true
},
{
"path": "src/resources/img", "addressable": true
},
{
"path": "src/resources/jquery-ui-1.12.0", "addressable": true
},
{
"path": "src/resources/sdk", "addressable": true
},
{
"path": "src/resources/styles", "addressable": true
},
{
"path": "src/resources/bower_components/react/react.js", "addressable": true
},
{
"path": "src/resources/bower_components/react/react-dom.min.js", "addressable": true
}
],
"scopes":[
"vso.chat_write",
"vso.code",
"vso.work",
"vso.build"
]
}