-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
64 lines (64 loc) · 1.98 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
{
"author": "CandleSmartHome.com",
"content_scripts": [
{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js",
"js/qrcode.js",
"js/lodash.min.js",
"js/crypto-js.min.js",
"js/aes256.js"
]
}
],
"description": "Control to your things from the internet.",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/createcandle/webinterface",
"id": "webinterface",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Web interface",
"options": {
"default": {
"Authorization token": "",
"Web location": "https://www.candlesmarthome.com/web/",
"Debugging": false
},
"schema": {
"properties": {
"Authorization token": {
"description": "Advanced. An authorization token allows this addon to access your things. The addon normally handles this automatically, but you can create a custom one and enter it here if you prefer.",
"type": "string"
},
"Web location": {
"description": "Advanced. The URL of the online location were you can access the web interface. You can run the relay software on your own webserver if you prefer. The default is the Candle webserver: https://www.candlesmarthome.com/web/",
"type": "string"
},
"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": "webinterface",
"version": "0.2.10",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"js/*.js",
"views/*.html"
]
}