Cookies

cookies
High RiskCategory: Privacy & NavigationView Official Docs

Technical Context

Grants the extension access to the chrome.cookies API to query, modify, or subscribe to changes in the browser's cookie store. This is often used by session managers or security tools to manage authentication states across different domains.

What This Means For You

The extension can see the small "id cards" websites use to remember that you are logged in. This allows the tool to help you manage your privacy or stay signed into multiple accounts simultaneously.

Related APIs

This permission enables access to these Chrome APIs:

chrome.cookies

Common Use Cases

  • Session managers
  • Privacy tools
  • Multi-account switchers

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "cookies" permission to your extension manifest:

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

Related Permissions