Plik manifestu – Bluetooth

Właściwość bluetooth w pliku manifestu określa, które uprawnienia są dostępne dla interfejsu API bluetooth.

Przykładowy plik manifest.json

{
  "name": "My Bluetooth app",
  "bluetooth": {
    // Permission for chrome.bluetoothSocket:
    // The application is allowed to communicate with devices
    // using the protocols, profiles, or services identified by
    // the UUIDs 0x1105 and 0x1106 using the BluetoothSocket API.
    "uuids": [ "1105", "1106" ],
    "socket": true
  },
  ...
}
{
  "name": "My Bluetooth app",
  "bluetooth": {
    // Permission for chrome.bluetoothLowEnergy:
    // The application is allowed to communicate with devices
    // using the profiles identified by the UUIDs 0x180D, 0x1809 and 0x180F
    // using the BluetoothLowEnergy API.
    "uuids": [ "180D", "1809", "180F" ],
    "low_energy": true
  },
  ...
}

Dokumentacja

  • uuids (tablica ciągu znaków) – opcjonalnie

    Właściwość uuids w pliku manifestu deklaruje listę protokołów, profili i usług, za pomocą których aplikacja może się komunikować.

  • socket (wartość logiczna) – opcjonalna

    Jeśli true, przyznaje aplikacji uprawnienia do korzystania z interfejsu API bluetoothSocket

  • low_energy (wartość logiczna) – opcjonalna

    Jeśli true, przyznaje aplikacji uprawnienia do korzystania z interfejsu API bluetoothLowEnergy

  • peripheral (wartość logiczna) – opcjonalna

    Jeśli true – zezwala aplikacji na korzystanie z funkcji reklamowych w interfejsie API bluetoothLowEnergy.