-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
manifest.json
73 lines (73 loc) · 1.95 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
{
"manifest_version": 2,
"minimum_chrome_version": "49",
"version": "0.4.3",
"max_msp": "1.54.0",
"COMMENT": "MAX_MSP required!!!!",
"author": "Emuflight Team",
"name": "Emuflight Configurator",
"short_name": "EmuConfigurator",
"description": "Emuflight Configurator is a crossplatform configuration tool for the Emuflight flight control system.",
"offline_enabled": true,
"default_locale": "en",
"app": {
"background": {
"scripts": ["js/chromeAppEventPage.js"],
"persistent": false
}
},
"permissions": [
"https://api.openstreetmap.org/",
"https://*.github.com/",
"https://*.githubusercontent.com/",
"serial",
"usb",
"storage",
"fileSystem",
"fileSystem.write",
"fileSystem.retainEntries",
"notifications",
"alwaysOnTopWindows",
{
"usbDevices": [
{
"vendorId": 1155,
"productId": 57105
},
{
"vendorId": 10473,
"productId": 393
},
{
"vendorId": 12619,
"productId": 262
}
]
},
"webview",
"unlimitedStorage"
],
"sockets": {
"tcp": {
"connect": "*:*"
}
},
"webview": {
"partitions": [
{
"name": "map",
"accessible_resources": [
"tabs/map.html",
"js/tabs/map.js",
"/js/libraries/openlayers/ol.css",
"/js/libraries/openlayers/ol.js",
"/images/icons/cf_icon_position.png",
"/images/icons/cf_icon_position_nofix.png"
]
}
]
},
"icons": {
"128": "images/emu_icon_128.png"
}
}