-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
57 lines (57 loc) · 1.47 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
{
"author": "CandleSmartHome.com",
"content_scripts": [
{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js"
]
}
],
"description": "Quickly change the values of multiple things",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "1.1.0"
}
},
"homepage_url": "https://github.com/createcandle/scenes",
"id": "scenes",
"license": "None",
"manifest_version": 1,
"name": "Scenes",
"options": {
"default": {
"Set last selected scene when addon starts": false,
"Debugging": false
},
"schema": {
"properties": {
"Set last selected scene when addon starts": {
"type": "boolean",
"description": "When your controller restarts, of when the Scenes addon itself restarts (for example, after an update), it can automatically re-apply the last selected scene."
},
"Debugging": {
"type": "boolean",
"description": "Advanced. Causes extra information about the addon's functioning to be written to the internal log. Useful if there is an issue with the addon."
}
},
"type": "object"
}
},
"short_name": "scenes",
"version": "0.1.2",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"images/*.png",
"images/*.gif",
"images/*.jpg",
"js/*.js",
"views/*.html"
]
}