Top Sites

topSites
Medium RiskCategory: Privacy & NavigationView Official Docs

Install Warning

"Read a list of your most frequently visited websites."

Technical Context

Provides read-only access to the chrome.topSites API, which returns a list of the user's most frequently visited websites. This data is derived from browsing history but limited to aggregated visit frequency.

What This Means For You

The extension can see a list of websites you visit most often, similar to what Chrome shows on a new tab page. It cannot see your full history, only your top visited sites.

Related APIs

This permission enables access to these Chrome APIs:

chrome.topSites

Common Use Cases

  • New tab replacements
  • Productivity dashboards

How to Declare in manifest.json

Add the "topSites" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Read a list of your most frequently visited websites."

Related Permissions