History

history
High RiskCategory: Privacy & NavigationView Official Docs

Install Warning

"Read and change your browsing history on all signed-in devices."

Technical Context

Provides full access to the chrome.history API, allowing the extension to read, search, add, and delete entries from your browsing history. This is a sensitive permission as browsing history reveals detailed patterns about user behavior and interests.

What This Means For You

The extension can see every website you have visited and when you visited it, going back as far as Chrome stores. It can also add fake entries or delete real ones from your history.

Related APIs

This permission enables access to these Chrome APIs:

chrome.history

Common Use Cases

  • History search tools
  • Privacy cleaners
  • Research assistants

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "history" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Read and change your browsing history on all signed-in devices."

Related Permissions