Manifest - Bluetooth

The bluetooth manifest property declares which permissions are available for the bluetooth API.

Sample manifest.json

{
  "name": "My Bluetooth app",
  "bluetooth": {
    // Permission for chrome.bluetooth.addProfile:
    // The application is allowed to communicate with devices
    // using the protocols, profiles, or services identified by
    // the UUIDs 0x1105 and 0x1106.
    "uuids": [ "1105", "1106" ]
  },
  ...
}

Reference

The bluetooth manifest property give permission to an app to use the bluetooth API. A list of UUIDs can be optionally specified to enable communication with devices.
array of string (optional) uuids The uuids manifest property declares the list of protocols, profiles and services that an app can communicate using.