forked from labnol/email-studio-gmail-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsscript.json
65 lines (65 loc) · 1.81 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
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
{
"timeZone": "GMT",
"dependencies": {
"enabledAdvancedServices": [{
"userSymbol": "Gmail",
"serviceId": "gmail",
"version": "v1"
}],
"libraries": [{
"userSymbol": "OAuth2",
"libraryId": "1B7FSrk5Zi6L1rSxxTDgDEUsPzlukDsi4KGuTMorsTQHhGBzBkMun4iDF",
"version": "26"
}]
},
"exceptionLogging": "STACKDRIVER",
"oauthScopes": [
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/script.external_request",
"https://www.googleapis.com/auth/script.locale",
"https://www.googleapis.com/auth/script.storage",
"https://www.googleapis.com/auth/contacts.readonly",
"https://mail.google.com/"
],
"urlFetchWhitelist": [
"https://www.google.com/",
"https://www.googleapis.com/"
],
"gmail": {
"name": "Email Studio",
"logoUrl": "https://i.imgur.com/lZUpBFx.png",
"contextualTriggers": [{
"unconditional": {},
"onTriggerFunction": "buildAddOn"
}],
"authorizationCheckFunction": "actionCheckAccess",
"useLocaleFromApp": true,
"primaryColor": "#4285F4",
"secondaryColor": "#4285F4",
"openLinkUrlPrefixes": [
"https://mail.google.com/",
"https://digitalinspiration.com/",
"https://www.labnol.org/",
"https://emailstudio.pro/"
],
"universalActions": [
{
"text": "Digital Inspiration",
"openLink": "https://digitalinspiration.com/"
},
{
"text": "Help and Support",
"openLink": "https://digitalinspiration.com/support"
},
{
"text": "Privacy Policy",
"openLink": "https://digitalinspiration.com/privacy"
},
{
"text": "Developer Logs",
"runFunction": "runBackgroundSendDebugLogs"
}
]
}
}