forked from openLRSng/openLRSng-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (37 loc) · 983 Bytes
/
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
{
"manifest_version": 2,
"minimum_chrome_version": "42",
"version": "0.57",
"author": "openLRSng team",
"name": "openLRSng - Configurator",
"short_name": "openLRSng",
"description": "Crossplatform configuration tool for openLRSng project",
"offline_enabled": true,
"default_locale": "en",
"app": {
"background": {
"scripts": ["eventPage.js"],
"persistent": false
}
},
"permissions": [
"https://www.google-analytics.com/",
"http://www.openlrsng.org/",
"serial",
"usb",
"storage",
"fileSystem",
"fileSystem.write",
"notifications"
],
"optional_permissions": [
{"usbDevices": [
{"vendorId": 9025, "productId": 32822},
{"vendorId": 4292, "productId": 60000},
{"vendorId": 1027, "productId": 24577}
]}
],
"icons": {
"128": "images/icon_128.png"
}
}