-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsscript.json
More file actions
57 lines (57 loc) · 1.49 KB
/
appsscript.json
File metadata and controls
57 lines (57 loc) · 1.49 KB
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/New_York",
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"dependencies": {
"enabledAdvancedServices": [
{
"userSymbol": "Drive",
"version": "v3",
"serviceId": "drive"
}
],
"libraries": [
{
"userSymbol": "PdfApp",
"version": "23",
"libraryId": "1wlEYkmDOSGb3Iuqd93a7cbQofcfwg5anjyvYmS3N4-nRAYHED8pVFaTY"
}
]
},
"urlFetchWhitelist": [
"https://generativelanguage.googleapis.com/"
],
"addOns": {
"common": {
"name": "DriveRenamer",
"logoUrl": "https://www.gstatic.com/images/branding/product/1x/drive_48dp.png",
"useLocaleFromApp": true,
"openLinkUrlPrefixes": [
"https://script.google.com/macros/s/",
"https://script.google.com/"
],
"homepageTrigger": {
"runFunction": "onHomepage",
"enabled": true
}
},
"drive": {
"onItemsSelectedTrigger": {
"runFunction": "onItemsSelected"
}
}
},
"oauthScopes": [
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/drive.addons.metadata.readonly",
"https://www.googleapis.com/auth/script.external_request",
"https://www.googleapis.com/auth/drive.readonly",
"https://www.googleapis.com/auth/script.locale"
],
"webapp": {
"executeAs": "USER_ACCESSING",
"access": "ANYONE"
}
}