Browsing Data

browsingData
Medium RiskCategory: Privacy & NavigationView Official Docs

Technical Context

Provides access to the chrome.browsingData API for programmatically removing browsing data from a user's local profile. This includes history, cookies, cache, downloads, and other stored data.

What This Means For You

The extension can delete your browsing history, cookies, cached files, and other data stored by Chrome. This is useful for privacy cleaners but means it can erase your saved information.

Related APIs

This permission enables access to these Chrome APIs:

chrome.browsingData

Common Use Cases

  • Privacy cleaners
  • History erasers
  • Cache managers

How to Declare in manifest.json

Add the "browsingData" permission to your extension manifest:

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

Related Permissions