forked from betaflight/betaflight-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·59 lines (56 loc) · 1.5 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
{
"manifest_version": 2,
"minimum_chrome_version": "38",
"version": "10.5.0",
"author": "Betaflight Squad",
"name": "Betaflight - Configurator",
"short_name": "Betaflight",
"description": "Crossplatform configuration tool for Betaflight 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/",
"https://*.betaflight.tech/",
"https://www.google-analytics.com/",
"serial",
"usb",
"storage",
"fileSystem",
"fileSystem.write",
"fileSystem.retainEntries",
"notifications",
"alwaysOnTopWindows",
{"usbDevices": [
{"vendorId": 1155, "productId": 57105},
{"vendorId": 10473, "productId": 393}
]},
"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"
}
}