Clipboard Read

clipboardRead
High RiskCategory: Device AccessView Official Docs

Install Warning

"Read data you copy and paste."

Technical Context

Grants read access to the system clipboard, allowing the extension to retrieve text, images, or other data that the user has copied. This works even when the extension is not focused.

What This Means For You

The extension can see anything you copy to your clipboard, including passwords or sensitive text you might copy from other applications.

Related APIs

This permission enables access to these Chrome APIs:

navigator.clipboarddocument.execCommand

Common Use Cases

  • Clipboard managers
  • Paste enhancers
  • Translation tools

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "clipboardRead" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Read data you copy and paste."

Related Permissions