This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 250
/
manifest.json
66 lines (63 loc) · 1.89 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
{
"manifest_version": 2,
"minimum_chrome_version": "49",
"version": "2.6.0",
"version_name": "2.6.0",
"author": "Cleanflight Project",
"name": "Cleanflight - Configurator",
"short_name": "Cleanflight",
"description": "Crossplatform configuration tool for Cleanflight 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/",
"http://*.cleanflight.com/",
"https://*.amazonaws.com/",
"https://cleanflight.slack.com/*",
"https://www.google-analytics.com/",
"serial",
"usb",
"storage",
"clipboardRead",
"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",
"/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/cf/cf_icon_128.png"
}
}