Welcome to mirror list, hosted at ThFree Co, Russian Federation.

manifest.json - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc4e71946e9c7c57fe19e557fb6558cfbe198c5e (plain)
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": "6.0.0",
    "author": "Several",
    "name": "INAV - Configurator",
    "short_name": "INAV",
    "description": "Crossplatform configuration tool for INAVFlight flight control system",

    "offline_enabled": true,

    "default_locale": "en",

    "app": {
        "background": {
            "scripts": ["eventPage.js"],
            "persistent": false
        }
    },

    "sandbox": {
    "pages": ["tabs/map.html"]
    },
    
    "sockets": {
        "udp": {
            "send": ["*"],
            "bind": ["*"]
        }
    },

    "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",
        "bluetooth",
        "sockets",
        "storage",
        "fileSystem",
        "fileSystem.write",
        "fileSystem.retainEntries",
        "notifications",
        "alwaysOnTopWindows",
        {"usbDevices": [
            {"vendorId": 1155, "productId": 57105}
        ]}
    ],

    "icons": {
        "128": "images/inav_icon_128.png"
    }
}