Bookmarks

bookmarks
Medium RiskCategory: Privacy & NavigationView Official Docs

Install Warning

"Read and change your bookmarks."

Technical Context

Enables full access to the chrome.bookmarks API for creating, organizing, modifying, and deleting bookmark entries. Extensions with this permission can read your entire bookmark tree structure and make bulk modifications.

What This Means For You

The extension can see all your saved bookmarks and folders, including their names and URLs. It can add new bookmarks, move them around, or delete them entirely.

Related APIs

This permission enables access to these Chrome APIs:

chrome.bookmarks

Common Use Cases

  • Bookmark managers
  • Sync tools
  • Research organizers

How to Declare in manifest.json

Add the "bookmarks" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Read and change your bookmarks."

Related Permissions