-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsscript.json
57 lines (57 loc) · 1.91 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
{
"timeZone": "America/Denver",
"dependencies": {
"enabledAdvancedServices": [{
"userSymbol": "Drive",
"serviceId": "drive",
"version": "v2"
}],
"libraries": [{
"userSymbol": "OAuth2",
"libraryId": "1B7FSrk5Zi6L1rSxxTDgDEUsPzlukDsi4KGuTMorsTQHhGBzBkMun4iDF",
"version": "33"
}]
},
"exceptionLogging": "STACKDRIVER",
"oauthScopes": ["https://www.googleapis.com/auth/script.external_request", "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.metadata.readonly", "https://www.googleapis.com/auth/drive.addons.metadata.readonly", "https://www.googleapis.com/auth/gmail.addons.execute", "https://www.googleapis.com/auth/gmail.readonly", "https://www.googleapis.com/auth/gmail.addons.current.message.readonly", "https://www.googleapis.com/auth/userinfo.email"],
"urlFetchWhitelist": ["https://*.onk2.com/", "https://*.onk2qa.com/", "https://*.onk2stable.com/", "https://login.microsoftonline.com/"],
"runtimeVersion": "V8",
"addOns": {
"common": {
"name": "K2",
"logoUrl": "http://contentus.blob.core.windows.net/images/k2_logo_sidebar.png",
"layoutProperties": {
"primaryColor": "#81AE40",
"secondaryColor": "#d68617"
},
"homepageTrigger": {
"runFunction": "onHomepage"
},
"universalActions": [{
"label": "Home",
"runFunction": "onHomepage"
}, {
"label": "Debug",
"runFunction": "onDebug"
}, {
"label": "Settings",
"runFunction": "onSettings"
}, {
"label": "Help",
"openLink": "https://github.com/k2workflow/K2-G-Suite-Add-on"
}]
},
"gmail": {
"contextualTriggers": [{
"unconditional": {
},
"onTriggerFunction": "onGmailMessageSelected"
}]
},
"drive": {
"onItemsSelectedTrigger": {
"runFunction": "onDriveItemSelected"
}
}
}
}