Index: extensions/common/api/extensions_manifest_types.json |
diff --git a/extensions/common/api/extensions_manifest_types.json b/extensions/common/api/extensions_manifest_types.json |
index 00262692a85139b6418daa80713e063f616acf29..6e8e7ee568bd371ed7383f1047962b7d3a0cea66 100644 |
--- a/extensions/common/api/extensions_manifest_types.json |
+++ b/extensions/common/api/extensions_manifest_types.json |
@@ -98,6 +98,32 @@ |
} |
} |
} |
+ }, |
+ { |
+ "id": "bluetooth", |
+ "type": "object", |
+ "description": "The <code>bluetooth</code> manifest property give permission to an app to use the $(ref:bluetooth) API. A list of UUIDs can be optionally specified to enable communication with devices.", |
+ "properties": { |
+ "uuids": { |
+ "description": "The <code>uuids</code> manifest property declares the list of protocols, profiles and services that an app can communicate using.", |
+ "optional": true, |
+ "type": "array", |
+ "items": { |
+ "description": "<p>The list specified as UUID strings.</p>", |
+ "type": "string" |
+ } |
+ }, |
+ "socket": { |
+ "type": "boolean", |
+ "description": "If <code>true</code>, gives permission to an app to use the $(ref:bluetoothSocket) API", |
+ "optional": true |
+ }, |
+ "low_energy": { |
+ "type": "boolean", |
+ "description": "If <code>true</code>, gives permission to an app to use the $(ref:bluetoothLowEnergy) API", |
+ "optional": true |
+ } |
+ } |
} |
] |
} |