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
array of string | (optional) uuids |
The uuids manifest property declares the list of protocols, profiles and services that an app can communicate using.
|