-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappsscript.json
39 lines (39 loc) · 1.52 KB
/
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
{
"dependencies": {
"enabledAdvancedServices": [
{
"userSymbol": "Gmail",
"serviceId": "gmail",
"version": "v1"
}
]
},
"exceptionLogging": "STACKDRIVER",
"gmail": {
"name": "Confirmer",
"logoUrl": "https://i.postimg.cc/RN4NpKQG/icon.png",
"primaryColor": "#267cb5",
"secondaryColor": "#267cb5",
"useLocaleFromApp": true,
"contextualTriggers": [
{
"unconditional": {},
"onTriggerFunction": "main"
}
],
"openLinkUrlPrefixes": [
"https://*.gov/",
"https://www.twitter.com/",
"https://www.facebook.com/"
]
},
"oauthScopes": [
"https://www.googleapis.com/auth/script.locale",
"https://www.googleapis.com/auth/script.send_mail",
"https://www.googleapis.com/auth/script.scriptapp",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/gmail.readonly"
]
}