-
Notifications
You must be signed in to change notification settings - Fork 951
Expand file tree
/
Copy pathmanifest.json
More file actions
191 lines (191 loc) · 7.57 KB
/
Copy pathmanifest.json
File metadata and controls
191 lines (191 loc) · 7.57 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"$schema": "https://raw.githubusercontent.com/OfficeDev/microsoft-teams-app-schema/preview/DevPreview/MicrosoftTeams.schema.json",
"id": "3f20c8ab-6ee8-4dbf-9c6d-8f91c8e46a12",
"manifestVersion": "devPreview",
"version": "1.0.8",
"name": {
"short": "Shared Runtime Sample",
"full": "Excel Shared Runtime Global State Sample"
},
"description": {
"short": "Share global data across add-in components using shared runtime.",
"full": "This sample shows how to set up a project that uses the shared runtime to share data across ribbon buttons, task pane, and custom functions."
},
"developer": {
"name": "Contoso",
"websiteUrl": "https://www.contoso.com",
"privacyUrl": "https://www.contoso.com/privacy",
"termsOfUseUrl": "https://www.contoso.com/terms"
},
"icons": {
"outline": "assets/icon-32.png",
"color": "assets/icon-64.png"
},
"accentColor": "#230201",
"localizationInfo": {
"defaultLanguageTag": "en-us",
"additionalLanguages": []
},
"authorization": {
"permissions": {
"resourceSpecific": [
{
"name": "Document.ReadWrite.User",
"type": "Delegated"
}
]
}
},
"validDomains": [
"https://localhost:3000",
"contoso.com"
],
"showLoadingIndicator": false,
"isFullScreen": false,
"defaultBlockUntilAdminAction": false,
"extensions": [
{
"requirements": {
"scopes": [
"workbook"
]
},
"runtimes": [
{
"requirements": {
"capabilities": [
{
"name": "SharedRuntime",
"minVersion": "1.1"
}
]
},
"id": "SharedRuntime",
"type": "general",
"code": {
"page": "https://localhost:3000/src/taskpane/taskpane.html",
"script": "https://localhost:3000/functions.js"
},
"lifetime": "long",
"actions": [
{
"id": "ShowTaskpane",
"type": "openPage",
"pinnable": false
}
],
"customFunctions": {
"namespace": {
"id": "CONTOSO",
"name": "CONTOSO"
},
"allowCustomDataForDataTypeAny": false,
"metadataUrl": "https://localhost:3000/functions.json"
}
}
],
"ribbons": [
{
"requirements": {
"capabilities": [
{
"name": "AddinCommands",
"minVersion": "1.1"
}
],
"scopes": [
"workbook"
],
"formFactors": [
"desktop"
]
},
"contexts": [
"default"
],
"tabs": [
{
"builtInTabId": "TabHome",
"groups": [
{
"id": "CommandsGroup",
"label": "Commands Group",
"icons": [
{
"size": 16,
"url": "https://localhost:3000/assets/icon-16.png"
},
{
"size": 32,
"url": "https://localhost:3000/assets/icon-32.png"
},
{
"size": 80,
"url": "https://localhost:3000/assets/icon-80.png"
}
],
"controls": [
{
"id": "TaskpaneButton",
"type": "button",
"label": "Show Taskpane",
"icons": [
{
"size": 16,
"url": "https://localhost:3000/assets/icon-16.png"
},
{
"size": 32,
"url": "https://localhost:3000/assets/icon-32.png"
},
{
"size": 80,
"url": "https://localhost:3000/assets/icon-80.png"
}
],
"supertip": {
"title": "Show Taskpane",
"description": "Click to Show a Taskpane"
},
"actionId": "ShowTaskpane",
"enabled": true
}
]
}
]
}
]
}
],
"alternates": [
{
"alternateIcons": {
"icon": {
"size": 32,
"url": "https://localhost:3000/assets/icon-32.png"
},
"highResolutionIcon": {
"size": 64,
"url": "https://localhost:3000/assets/icon-64.png"
}
}
}
],
"getStartedMessages": [
{
"requirements": {
"scopes": [
"workbook"
],
"formFactors": [
"desktop"
]
},
"title": "Get started with your sample add-in!",
"description": "Your sample add-in loaded successfully. Go to the HOME tab and click the 'Show Taskpane' button to get started.",
"learnMoreUrl": "https://go.microsoft.com/fwlink/?LinkId=276812"
}
]
}
]
}