-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
54 lines (54 loc) · 1.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"author": "[email protected]",
"content_scripts": [{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js"
]
}],
"description": "Create and maintain dynamic Pages with different combinations of Things and groups of Things",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"primary_type": "extension",
"strict_max_version": "*",
"strict_min_version": "0.12.0"
}
},
"homepage_url": "https://github.com/chas-iot/pages-extension",
"id": "pages-extension",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Pages extension",
"short_name": "pages",
"version": "0.0.1",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"js/*.js",
"views/*.html"
],
"options": {
"default": {
"dblocation": "/home/pi/.mozilla-iot/pages/"
},
"schema": {
"type": "object",
"properties": {
"dblocation": {
"type": "string",
"description": "the location of the database of this extension"
},
"debug": {
"type": "string",
"description": "a list of comma separated debug options. Currently avaliable: request,response,<api path>"
}
},
"required": [
"dblocation"
]
}
}
}