Sessions

sessions
Medium RiskCategory: Privacy & NavigationView Official Docs

Technical Context

Grants access to the chrome.sessions API to query and restore recently closed tabs and windows, as well as sessions from other synced devices. This enables session recovery and cross-device tab management.

What This Means For You

The extension can see tabs and windows you recently closed and restore them for you. If you use Chrome on multiple devices, it can also see tabs open on your other computers or phones.

Related APIs

This permission enables access to these Chrome APIs:

chrome.sessions

Common Use Cases

  • Session managers
  • Tab recovery tools

How to Declare in manifest.json

Add the "sessions" permission to your extension manifest:

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

Related Permissions