forked from googleworkspace/add-ons-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsscript.json
38 lines (38 loc) · 1.04 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
{
"timeZone": "America/New_York",
"dependencies": {
"libraries": [{
"userSymbol": "OAuth2",
"libraryId": "1B7FSrk5Zi6L1rSxxTDgDEUsPzlukDsi4KGuTMorsTQHhGBzBkMun4iDF",
"version": "21"
}]
},
"exceptionLogging": "CLOUD",
"oauthScopes": [
"https://www.googleapis.com/auth/script.storage",
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/gmail.addons.current.message.readonly",
"https://www.googleapis.com/auth/script.external_request"
],
"gmail": {
"name": "GitHub Reader",
"logoUrl": "https://cdn.rawgit.com/webdog/octicons-png/bd02e5bc/git-branch.svg.png",
"contextualTriggers": [{
"unconditional": {
},
"onTriggerFunction": "getContextualAddOn"
}],
"universalActions": [{
"text": "Settings",
"runFunction": "handleShowSettings"
}],
"openLinkUrlPrefixes": [
"https://github.com"
],
"primaryColor": "#111111"
},
"urlFetchWhitelist": [
"https://api.github.com/",
"https://github.com/"
]
}