generated from managed-components/google-analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
35 lines (35 loc) · 1.17 KB
/
manifest.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
{
"name": "Demo Component",
"description": "Demo Component",
"namespace": "demo",
"icon": "assets/demo.svg",
"categories": ["Advertising"],
"provides": ["events"],
"allowCustomFields": true,
"permissions": {
"serve_static_files": {
"description": "ExampleTool serves a static file. Not giving this permission will not affect the main purpose of ExampleTool.",
"required": false
},
"provide_server_functionality": {
"description": "Allow ExampleTool to create a reverse proxy from '/gate' to 'http://n-gate.com' and define custom server side logic.",
"required": true
},
"client_network_requests": {
"description": "ExampleTool uses cookies to attribute sessions more accurately",
"required": false
},
"execute_unsafe_scripts": {
"description": "Simple logs for debugging purposes",
"required": false
},
"provide_widget": {
"description": "Widgets are not the essential part of this component but a very useful one",
"required": false
},
"access_client_kv": {
"description": "ExampleTool uses cookies to attribute sessions more accurately",
"required": true
}
}
}