-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsscript.json
63 lines (63 loc) · 1.83 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
{
"timeZone": "America/Chicago",
"dependencies": {
"enabledAdvancedServices": []
},
"exceptionLogging": "STACKDRIVER",
"oauthScopes": [
"https://www.googleapis.com/auth/script.locale",
"https://www.googleapis.com/auth/script.container.ui",
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/documents",
"https://www.googleapis.com/auth/gmail.addons.current.action.compose",
"https://www.googleapis.com/auth/gmail.addons.current.message.action",
"https://www.googleapis.com/auth/gmail.addons.current.message.metadata",
"https://www.googleapis.com/auth/gmail.addons.current.message.readonly",
"https://www.googleapis.com/auth/gmail.compose",
"https://www.googleapis.com/auth/gmail.send",
"https://www.googleapis.com/auth/gmail.modify",
"https://www.googleapis.com/auth/gmail.addons.execute"
],
"runtimeVersion": "V8",
"addOns": {
"common": {
"name": "FOIAMail",
"logoUrl": "https://uploads.knightlab.com/paper_airplane.png",
"useLocaleFromApp": true,
"homepageTrigger": {
"runFunction": "onHomepage",
"enabled": true
},
"universalActions": [
{
"label": "Learn more about FOIAMail",
"openLink": "https://KnightLab.Northwestern.edu"
}
]
},
"gmail": {
"contextualTriggers": [
{
"unconditional": {},
"onTriggerFunction": "onGmailMessage"
}
],
"composeTrigger": {
"selectActions": [
{
"text": "Insert cat",
"runFunction": "onGmailCompose"
}
],
"draftAccess": "NONE"
}
},
"docs": {
"homepageTrigger": {
"runFunction": "onDocsHomepage",
"enabled": true
}
}
}
}