-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsscript.json
39 lines (39 loc) · 996 Bytes
/
appsscript.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
{
"timeZone": "America/New_York",
"dependencies": {},
"exceptionLogging": "STACKDRIVER",
"oauthScopes": [
"https://mail.google.com/",
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/script.locale"
],
"runtimeVersion": "V8",
"addOns": {
"common": {
"name": "Password Zip",
"logoUrl": "https://www.gstatic.com/images/icons/material/system/1x/attachment_black_48dp.png",
"useLocaleFromApp": true,
"homepageTrigger": {
"runFunction": "onHomepage",
"enabled": true
},
"universalActions": [
{
"label": "About the Password Zip add-on",
"openLink": "https://github.com/ykiu/gmail-password-zip"
}
],
"layoutProperties": {
"primaryColor": "#bbdefb"
}
},
"gmail": {
"contextualTriggers": [
{
"unconditional": {},
"onTriggerFunction": "onGmailMessage"
}
]
}
}
}