Deze pagina maakt deel uit van de documentatie voor het Chrome Apps-platform, dat in 2020 is beëindigd. Chrome-apps in kioskmodus die worden gebruikt door Enterprise- en Education-klanten worden na april 2027 niet langer ondersteund, wat het einde van hun levensduur betekent. Bovendien zullen alle resterende Chrome-apps die in beheerde omgevingen door ondernemingen en onderwijsorganisaties worden gebruikt, in oktober 2028 het einde van hun levensduur bereiken. Meer informatie over het migreren van uw app .
De bluetooth manifesteigenschap geeft aan welke machtigingen beschikbaar zijn voor de Bluetooth- API.
Voorbeeld van manifest.json
{"name":"MyBluetoothapp","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":"MyBluetoothapp","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},...}
Referentie
uuids (array van tekenreeksen) - optioneel
De manifesteigenschap uuids declareert de lijst met protocollen, profielen en services waarmee een app kan communiceren.
socket (Boolean) - optioneel
Indien true , geeft dit toestemming aan een app om de BluetoothSocket API te gebruiken
low_energy (booleaans) - optioneel
Indien true , geeft dit toestemming aan een app om de bluetoothLowEnergy API te gebruiken
peripheral (Boolean) - optioneel
Indien true , geeft dit toestemming aan een app om de advertentiefuncties in de bluetoothLowEnergy API te gebruiken
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Translation issue","translationIssue","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2014-03-11 UTC."],[],[]]