Bluetooth

bluetooth
Medium RiskCategory: Device AccessView Official Docs

Install Warning

"Access Bluetooth devices."

Technical Context

Grants access to the chrome.bluetooth API for discovering and communicating with Bluetooth devices. This enables pairing, data transfer, and device management.

What This Means For You

The extension can find and connect to Bluetooth devices near you, like headphones or fitness trackers. This is used for device management or data sync.

Related APIs

This permission enables access to these Chrome APIs:

chrome.bluetoothchrome.bluetoothLowEnergy

Common Use Cases

  • Device managers
  • Fitness sync
  • Audio tools

How to Declare in manifest.json

Add the "bluetooth" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "bluetooth"
  ]
}

What Users Will See

When users install your extension, Chrome will display this warning:

This extension can:

"Access Bluetooth devices."

Related Permissions