-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsscript.json
More file actions
42 lines (42 loc) · 1.21 KB
/
appsscript.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"timeZone": "Europe/Berlin",
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"oauthScopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/gmail.addons.current.message.readonly",
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/script.locale",
"https://www.googleapis.com/auth/spreadsheets"
],
"addOns": {
"common": {
"name": "Happiness Rating",
"logoUrl": "https://nevensuboticstiftung.de/cms/wp-content/uploads/2020/12/N2S_LOGO_m.png",
"useLocaleFromApp": true,
"layoutProperties": {
"primaryColor": "#00a8cd",
"secondaryColor": "#f5c630"
},
"homepageTrigger": {
"runFunction": "onHomepage",
"enabled": true
},
"universalActions": [
{
"label": "Sheet",
"openLink": "https://docs.google.com/spreadsheets/d/1MLkyIc3Kd7EFZAV-yxiuSPO95HiWwm-8TTs9gmgAj08/edit#gid=0"
}
]
},
"gmail": {
"contextualTriggers": [
{
"unconditional": {},
"onTriggerFunction": "onGmailMessage"
}
]
}
}
}