forked from ButterFlight/butterflight-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·57 lines (53 loc) · 1.38 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
{
"manifest_version": 2,
"minimum_chrome_version": "38",
"version": "10.4.1",
"author": "Butterflight Squad",
"name": "Butterflight - Configurator",
"short_name": "Butterflight",
"description": "Crossplatform configuration tool for Butterflight flight control system",
"offline_enabled": true,
"default_locale": "en",
"app": {
"background": {
"scripts": ["js/eventPage.js"],
"persistent": false
}
},
"permissions": [
"https://maps.googleapis.com/*",
"https://*.github.com/",
"https://*.githubusercontent.com/",
"http://*.baseflight.net/",
"https://*.amazonaws.com/",
"serial",
"usb",
"storage",
"fileSystem",
"fileSystem.write",
"fileSystem.retainEntries",
"notifications",
"alwaysOnTopWindows",
{"usbDevices": [
{"vendorId": 1155, "productId": 57105}
]},
"webview",
"unlimitedStorage"
],
"sockets": {
"tcp": {
"connect": "*:*"
}
},
"webview": {
"partitions": [
{
"name": "map",
"accessible_resources" : ["tabs/map.html", "js/tabs/map.js", "/images/icons/cf_icon_position.png"]
}
]
},
"icons": {
"128": "images/bf_icon_128.png"
}
}