forked from flatsiedatsie/power-settings
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
67 lines (67 loc) · 2.01 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
{
"author": "CandleSmartHome.com",
"content_scripts": [
{
"css": [
"css/extension.css"
],
"js": [
"js/extension.js"
]
}
],
"description": "A core part of Candle. Adds options to shutdown or reboot your system, go fullscreen, manually set the time, create and restore backups, do a factory reset, change display settings, and much more.",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "extension",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/createcandle/power-settings",
"id": "power-settings",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Power Settings",
"options": {
"default": {
"Display standby delay":15,
"Do not use hardware clock": false,
"Debug": false
},
"schema": {
"properties": {
"Display standby delay": {
"description": "If display power management is enabled, after how many minutes should an attached display go to sleep? This delay may be set between 1 and 60 minutes. The default is 15.",
"type": "integer",
"minimum": 1,
"maximum": 60
},
"Do not use hardware clock": {
"description": "If you have plugged in a ds1307 hardware clock module, then it will normally automatically be used. You can disable use of the hardware clock here. Reboot the system to complete the change.",
"type": "boolean"
},
"Debug": {
"description": "Advanced. Enable this to see much more detail in the internal log about what this add-on is doing.",
"type": "boolean"
}
},
"required": [],
"type": "object"
}
},
"short_name": "Power",
"version": "3.7.1",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"images/*.jpg",
"images/*.jpeg",
"images/*.gif",
"images/*.png",
"js/*.js",
"views/*.html",
"backup/*.tar"
]
}