Upstream version 6.35.121.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / templates / articles / manifest / bluetooth.html
1 <h1>Manifest - Bluetooth</h1>
2
3 <p>
4 The <code>bluetooth</code> manifest property declares which permissions are
5 available for the $(ref:bluetooth) API.
6 </p>
7
8 <h2 id="manifest">Sample manifest.json</h2>
9 <pre data-filename="manifest.json">
10 {
11   "name": "My Bluetooth {{platform}}",
12   "bluetooth": {
13     // Permission for chrome.bluetooth.addProfile:
14     // The application is allowed to communicate with devices
15     // using the protocols, profiles, or services identified by
16     // the UUIDs 0x1105 and 0x1106.
17     "uuids": [ "1105", "1106" ]
18   },
19   ...
20 }
21 </pre>
22
23 <section>
24 <h2 id="reference">Reference</h2>
25 <p class="api_reference">
26 {{+partials.type type:apis.manifestTypes.byName.bluetooth/}}
27 </p>
28 </section>