Documentation index for AI agents (llms.txt). Markdown versions of every page are available by appending .md to the page URL. The full corpus is at /llms-full.txt.

Storage Panel

The Storage Panel gives you direct access to both Local Storage and Session Storage for the current page—an essential tool for debugging web applications that rely on client-side persistence. Looking for cookies? They have their own Cookies Panel.

The Storage Panel showing the key-value table with the Local Storage and Session Storage tabs and entry size totals
The Storage Panel: Local Storage and Session Storage with in-place editing

Key Features

  • Dual Storage Areas: Switch between Local Storage and Session Storage using tabs at the top of the panel
  • Direct Access: The inspector shares the page's origin, so storage is read and written directly without any background communication or extra permissions
  • In-Place Editing: Double-click any cell to edit it, just like in Chrome DevTools
  • Add & Remove Entries: Use the toolbar buttons to create new entries or clear the entire storage area
  • Search & Filter: Filter entries by key or value in real time
  • Size Tracking: The status bar displays the total number of entries and their combined byte size

How It Works

Storage data is accessed through window.localStorage and window.sessionStorage. Since the injected inspector shares the page's origin, no cross-origin communication is required. Changes are applied immediately to the page's storage.

Editing Operations

OperationHow
Edit a keyDouble-click the Key cell to rename an entry
Edit a valueDouble-click the Value cell to modify it
Delete an entryClick the X icon in the Actions column
Add an entryClick the + button in the toolbar and fill in the key and value
Clear allClick the Ban icon to remove all entries in the current storage area
RefreshClick the Refresh button to re-read storage after external changes

Switching Storage Areas

  1. Click the Local Storage or Session Storage tab
  2. The table instantly refreshes to show entries from the selected area

Error Handling

If a write operation fails—for example, if the storage quota is exceeded or the page has blocked site data—an error message appears in a red bar below the toolbar. The operation is automatically retried after each action.

If storage access throws an error (e.g., the page has blocked site data), the panel displays "Storage is not accessible on this page" and editing operations are disabled.