-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsscript.json
45 lines (45 loc) · 1.24 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
{
"timeZone": "America/New_York",
"dependencies": {},
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"addOns": {
"common": {
"homepageTrigger": {
"runFunction": "onDefaultHomePageOpen",
"enabled": false
},
"layoutProperties": {
"primaryColor": "#F7931A",
"secondaryColor": "#000000"
},
"logoUrl": "https://bitcoin.org/favicon.png",
"name": "Attach Bitcoin",
"openLinkUrlPrefixes": [
"https://bitcoin.org/",
"https://api.qrserver.com/v1/create-qr-code/"
],
"universalActions": [],
"useLocaleFromApp": true
},
"gmail": {
"composeTrigger": {
"selectActions": [
{
"text": "Attach Bitcoin",
"runFunction": "onGmailCompose"
}
],
"draftAccess": "METADATA"
},
"contextualTriggers": []
}
},
"oauthScopes": [
"https://www.googleapis.com/auth/gmail.addons.current.action.compose",
"https://www.googleapis.com/auth/gmail.addons.current.message.metadata",
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/script.external_request",
"https://www.googleapis.com/auth/script.locale"
]
}