Browser storage

LocalStorage Inspector

Browse every key and value this site has stored in your browser's localStorage, edit or delete entries inline, and see a byte-size estimate for each one.

0 keys, 0 bytes
KeyValueSize
This permanently deletes every key above. Are you sure?

Browsers isolate storage per origin — this can only ever show and manage localStorage belonging to pandatoolbox.com.

📋

Live and editable

Click any value to edit it in place, or delete a single key without touching the rest.

📊

Size at a glance

See an estimated byte size per key and a running total against the quota.

🔒

Origin-scoped, honestly

This tool can only ever see pandatoolbox.com's own storage — never any other site's.

How to use the localStorage inspector

Manage this site's stored data directly, without opening DevTools.

  1. Review the tableEvery key currently stored for pandatoolbox.com is listed with its value and size.
  2. Edit or deleteClick a value to edit it inline, or use the delete button to remove a single key.
  3. Add or clearAdd a brand new key-value pair, or clear everything with a two-step confirmation.

About localStorage and the same-origin rule

localStorage lets a website save small amounts of text data directly in your browser, persisting across visits until it is cleared. Every browser enforces the same-origin policy for it: a page can only read and write the storage that belongs to its own scheme, host and port. That is a deliberate security boundary, not a limitation of this tool — no page on any website, including this one, can reach into another site's localStorage.

Shared across one origin

Every page under pandatoolbox.com shares the same localStorage, which is why keys from other tools may appear here.

Text only

localStorage only stores strings. Structured data is typically saved as a JSON string and parsed back on read.

A rough quota

Most browsers cap localStorage around 5 to 10MB per origin, which is why a byte estimate is shown for every entry.

Not automatically cleared

Unlike a session, localStorage persists until a page removes it, the user clears site data, or storage is reset manually.

LocalStorage inspector FAQ

Common questions about scope and safety.

Can this tool see localStorage from other websites?

No. Browsers isolate localStorage per origin as a core security boundary, so a page can only ever read and write the storage that belongs to its own website. This tool can only show and manage localStorage that belongs to pandatoolbox.com, exactly like every other website's page can only see its own.

Why do I see keys I did not expect?

localStorage is shared across every page on the same origin, not just this one. If you have used other tools on pandatoolbox.com that save your preferences or progress, their keys will also appear here since they all share the same pandatoolbox.com storage.

How is the byte size calculated?

It is an estimate based on the length of the key and value strings as UTF-16, which is how most browsers actually count characters toward the localStorage quota. It will not exactly match every browser's internal accounting, but it is close enough to judge relative size.

What happens if I click Clear all?

Nothing happens on the first click except a confirmation prompt appearing in its place. You must click the confirm button a second time to actually remove every key, which is designed to prevent an accidental wipe.

Is any of this sent to a server?

No. Every read, edit, add and delete happens directly against your browser's localStorage API. My Panda Toolbox never receives this data.