-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsscript.json
64 lines (64 loc) · 1.46 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
64
{
"timeZone": "Africa/Lagos",
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"dependencies": {
"enabledAdvancedServices": [
{
"userSymbol": "Sheets",
"serviceId": "sheets",
"version": "v4"
},
{
"userSymbol": "Drive",
"version": "v2",
"serviceId": "drive"
}
]
},
"oauthScopes": [
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/drive.readonly",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/script.send_mail",
"https://www.googleapis.com/auth/script.scriptapp",
"https://www.googleapis.com/auth/script.container.ui"
],
"addOns": {
"common": {
"name": "PayTrack",
"logoUrl": "https://www.linkpicture.com/q/IMG_2430.png",
"layoutProperties": {
"primaryColor": "#34A853"
},
"universalActions": [
{
"label": "Transaction Trigger",
"runFunction": "completeTransaction"
},
{
"label": "Home Page",
"runFunction": "onSheet"
},
{
"label": "Documentation",
"runFunction": "onDocs"
}
]
},
"sheets": {
"homepageTrigger": {
"runFunction": "onSheet"
}
},
"drive": {
"homepageTrigger": {
"runFunction": "onDrive"
}
}
},
"webapp": {
"executeAs": "USER_ACCESSING",
"access": "ANYONE"
}
}