forked from donbowman/mautic-gmail-add-on
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsscript.json
35 lines (35 loc) · 966 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
{
"timeZone": "America/Toronto",
"dependencies": {
},
"exceptionLogging": "STACKDRIVER",
"oauthScopes": [
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/gmail.addons.current.message.metadata",
"https://www.googleapis.com/auth/gmail.addons.current.action.compose",
"https://www.googleapis.com/auth/gmail.metadata",
"https://www.googleapis.com/auth/gmail.compose"
],
"runtimeVersion": "V8",
"urlFetchWhitelist": [
"https://MY_URL_HARDCODED/"
],
"addOns": {
"common": {
"name": "Mautic Gmail Integration",
"logoUrl": "https://www.agilicus.com/www/Agilicus-logo-512x512.white.png",
"layoutProperties": {
"primaryColor": "#0057b8"
}
},
"gmail": {
"composeTrigger": {
"draftAccess": "METADATA",
"selectActions": [{
"runFunction": "onHomepage",
"text": "Insert Tracker"
}]
}
}
}
}