-
Notifications
You must be signed in to change notification settings - Fork 14
/
schema.json
42 lines (42 loc) · 1 KB
/
schema.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
[
{
"namespace": "LegacyHelper",
"functions": [
{
"name": "registerGlobalUrls",
"type": "function",
"async": true,
"description": "Register folders which should be available as legacy chrome:// urls or resource:// urls",
"parameters": [
{
"name": "data",
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
},
"description": "Array of manifest url definitions (content, locale or resource)"
}
]
},
{
"name": "openDialog",
"type": "function",
"parameters": [
{
"name": "name",
"type": "string",
"description": "name of the new dialog"
},
{
"name": "path",
"type": "string",
"description": "path of the dialog to be opened"
}
]
}
]
}
]