forked from iNavFlight/inav-configurator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
54 lines (48 loc) · 1.32 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
{
"manifest_version": 2,
"minimum_chrome_version": "38",
"version": "0.0.1",
"author": "Several",
"name": "ARDUPILOT - Configurator",
"short_name": "ARDUPILOT",
"description": "Crossplatform configuration tool for ARDUPILOT flight control system",
"offline_enabled": true,
"default_locale": "en",
"app": {
"background": {
"scripts": ["eventPage.js"],
"persistent": false
}
},
"sandbox": {
"pages": ["tabs/map.html"]
},
"permissions": [
"https://www.google-analytics.com/",
"https://maps.googleapis.com/*",
"https://*.github.com/",
"https://*.githubusercontent.com/",
"https://*.amazonaws.com/",
"https://dev.virtualearth.net/",
"serial",
"usb",
"storage",
"fileSystem",
"fileSystem.write",
"fileSystem.retainEntries",
"notifications",
"alwaysOnTopWindows",
{"usbDevices": [
{"vendorId": 1155, "productId": 57105}
]}//,
//"chrome-extension://*" //https://nwjs.readthedocs.io/en/latest/For%20Users/Debugging%20with%20DevTools/
],
"sockets": {
"tcp": {
"connect": "*:*"
}
},
"icons": {
"128": "images/ARDUPILOT_icon_128.png"
}
}