-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
85 lines (85 loc) · 3.07 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"author": "candleSmartHome.com",
"content_scripts": [
{
"css": [
"css/border.css",
"css/extension.css"
],
"js": [
"js/extension.js",
"js/border.js"
]
}
],
"description": "A web browser inside your web browser. Useful when in Kiosk mode.",
"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/browser",
"id": "browser",
"license": "",
"manifest_version": 1,
"name": "Browser",
"options": {
"default": {
"Restore tabs": true,
"Browsing history length": 5,
"Fullscreen delay": 60,
"Slideshow": true,
"Search URL":"https://swisscows.com/en/web?query=",
"Debugging": false
},
"schema": {
"properties": {
"Restore tabs": {
"description": "When re-opening the browser addon, this will restore any tabs that were open last time. This information is stored in a cooking in your actual browser, so will be different per device",
"type": "boolean"
},
"Browsing history length": {
"description": "How long should the list of recently visited web pages be? Set to zero to disable this feature. The default is 5.",
"type": "integer",
"minimum": 0,
"maximum": 30
},
"Fullscreen delay": {
"description": "If the browser is not actively being used, the currently open tab can, after a while, be shown fullscreen. The buttons and URL bar can be automatically hidden after a while, so that the webpage is shown full screen. You can set the delay in seconds. Set to zero to disable this feature. The default is 60 seconds.",
"type": "integer",
"minimum": 0,
"maximum": 180
},
"Slideshow": {
"description": "The browser can switch between all open tabs to create a slideshow. This requires multiple browser tabs to be open, and the fullscreen mode must be active. The fullscreen delay also becomes the time between switching tabs.",
"type": "boolean"
},
"Search URL": {
"description": "Advanced. You can change to a custom default search engine. However, very few search engines will run inside an iframe AND not attempt to open new links in a new window by default (opening links in new windows is blocked for security reasons). The default is https://swisscows.com/en/web?query=",
"type": "string"
},
"Debugging": {
"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": "Browser",
"version": "0.1.0",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"images/*.gif",
"images/*.png",
"images/*.jpg",
"images/*.jpeg",
"js/*.js",
"views/*.html"
]
}