Fichier manifeste – Bluetooth

La propriété du fichier manifeste bluetooth déclare les autorisations disponibles pour l'API Bluetooth.

Exemple de fichier 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
  },
  ...
}

Reference

  • uuids (tableau de chaînes) : facultatif

    La propriété du fichier manifeste uuids déclare la liste des protocoles, profils et services qu'une application peut utiliser pour communiquer.

  • socket (booléen) : facultatif

    Si la valeur est true, autorise une application à utiliser l'API bluetoothSocket.

  • low_energy (booléen) : facultatif

    Si la valeur est true, autorise une application à utiliser l'API bluetoothLowEnergy

  • peripheral (booléen) : facultatif

    Si la valeur est true, autorise une application à utiliser les fonctions de publicité dans l'API bluetoothLowEnergy.