-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsscript.json
More file actions
77 lines (77 loc) · 2.52 KB
/
appsscript.json
File metadata and controls
77 lines (77 loc) · 2.52 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"timeZone": "Europe/Madrid",
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"dependencies": {
"enabledAdvancedServices": [
{
"userSymbol": "AnalyticsAdmin",
"serviceId": "analyticsadmin",
"version": "v1beta"
},
{
"userSymbol": "AnalyticsData",
"serviceId": "analyticsdata",
"version": "v1beta"
},
{
"userSymbol": "TagManager",
"serviceId": "tagmanager",
"version": "v2"
}
]
},
"oauthScopes": [
"https://www.googleapis.com/auth/spreadsheets.currentonly",
"https://www.googleapis.com/auth/script.external_request",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/script.storage",
"https://www.googleapis.com/auth/analytics.readonly",
"https://www.googleapis.com/auth/tagmanager.readonly",
"https://www.googleapis.com/auth/datastudio",
"https://www.googleapis.com/auth/script.container.ui",
"https://www.googleapis.com/auth/webmasters.readonly",
"https://www.googleapis.com/auth/youtube.readonly",
"https://www.googleapis.com/auth/business.manage",
"https://www.googleapis.com/auth/adwords",
"https://www.googleapis.com/auth/content",
"https://www.googleapis.com/auth/bigquery.readonly",
"https://www.googleapis.com/auth/adsense.readonly"
],
"addOns": {
"common": {
"name": "Addocu",
"logoUrl": "https://raw.githubusercontent.com/Addocu/addocu/main/docs/addocu_logo.png",
"layoutProperties": {
"primaryColor": "#1A5DBB",
"secondaryColor": "#00AEEF"
},
"useLocaleFromApp": true
},
"sheets": {
"onFileScopeGrantedTrigger": {
"runFunction": "onFileScopeGranted"
}
}
},
"urlFetchWhitelist": [
"https://analyticsadmin.googleapis.com/",
"https://datastudio.googleapis.com/",
"https://tagmanager.googleapis.com/",
"https://www.googleapis.com/",
"https://www.googleapis.com/youtube/v3/",
"https://searchconsole.googleapis.com/",
"https://googleads.googleapis.com/",
"https://mybusinessaccountmanagement.googleapis.com/",
"https://mybusinessbusinessinformation.googleapis.com/",
"https://merchantapi.googleapis.com/",
"https://bigquery.googleapis.com/",
"https://adsense.googleapis.com/",
"https://fonts.googleapis.com/",
"https://fonts.gstatic.com/",
"https://cdnjs.cloudflare.com/",
"https://raw.githubusercontent.com/",
"https://drive.google.com/",
"https://googleusercontent.com/"
]
}