Web Navigation

webNavigation
High RiskCategory: CommunicationView Official Docs

Install Warning

"Read your browsing history."

Technical Context

Grants access to the chrome.webNavigation API for receiving notifications about navigation events in real-time. This includes frame navigation, history transitions, and error events.

What This Means For You

The extension can see when you navigate to different pages and how you got there, like clicking a link or using back/forward. It sees URLs as you browse.

Related APIs

This permission enables access to these Chrome APIs:

chrome.webNavigation

Common Use Cases

  • History tools
  • Parental controls
  • Analytics

⚠ Red Flags When Combined With

How to Declare in manifest.json

Add the "webNavigation" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Read your browsing history."

Related Permissions