-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
executable file
·69 lines (69 loc) · 2.43 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"author": "CandleSmartHome.com",
"description": "Install and manage addons",
"content_scripts": [
{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js"
]
}
],
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "extension",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://www.candlesmarthome.com/app_store",
"id": "candleappstore",
"license": "None",
"manifest_version": 1,
"name": "Candle Store",
"options": {
"default": {
"App store server":"https://www.candlesmarthome.com/appstore",
"Show developer options": false,
"Keep addon data when uninstalling": false,
"Debugging": false
},
"schema": {
"properties": {
"App store server": {
"description": "Advanced. The server that controls which apps you can install. The default is https://www.candlesmarthome.com/appstore",
"type": "string"
},
"Show developer options": {
"type": "boolean",
"description": "Advanced. If you are a developer (programmer) working on Candle or just need more control, then you can show the developer options. You can also make them visible by going to the settings page and clicking on the gear icon 4 times. Some developer features, such as the internal logs, will also require a reboot to change."
},
"Keep addon data when uninstalling": {
"type": "boolean",
"description": "Advanced. Addons can create settings files on your system, and normally they are removed when you uninstall an addon. However, if you prefer those settings to be left behind instead, then you can enable this option. This can be useful if you plan to re-install addons later."
},
"Debugging": {
"description": "Advanced. Debugging allows you to diagnose any issues with the add-on. If enabled it will result in a lot more debug data in the internal log (which can be found under settings -> developer -> view internal logs).",
"type": "boolean"
}
},
"required": [],
"type": "object"
}
},
"short_name": "candleapps",
"version": "0.5.17",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"images/*.png",
"images/*.gif",
"images/*.jpg",
"images/*.jpeg",
"js/*.js",
"views/*.html"
]
}