Reading List

readingList
Low RiskCategory: Browser UIView Official Docs

Install Warning

"Read and change entries in the reading list."

Technical Context

Enables access to the chrome.readingList API for adding, removing, and querying items in Chrome's built-in reading list feature. This allows extensions to integrate with native save-for-later functionality.

What This Means For You

The extension can add or remove pages from Chrome's built-in reading list. This helps you save articles to read later directly through the extension.

Related APIs

This permission enables access to these Chrome APIs:

chrome.readingList

Common Use Cases

  • Read-it-later tools
  • Research assistants

How to Declare in manifest.json

Add the "readingList" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Read and change entries in the reading list."

Related Permissions