Browser storage,
managed like a database.
A Chrome DevTools extension that gives you a real database client for IndexedDB, LocalStorage, SessionStorage, Cookies, and Cache Storage. Dense grid, Mongo-style queries, row inspector, schema inference.
{ "attendees": [ "priya@", "marcus@" ] }
A dense, keyboard-first grid for every storage surface.
22-pixel rows. Tabular numerics. Sticky headers. Pinnable columns. Inline-edit any cell. Round-trips Date, BigInt, Map, Set, RegExp, Blob, ArrayBuffer through every export format.


1// upcoming reviews, last-modified first2{3 "store": "events",4 "filter": {5 "kind": "review",6 "date": { "$gte": "2026-04-14" },7 "seats": { "$gt": 4 }8 },9 "sort": { "updatedAt": -1 },10 "limit": 5011}
MongoDB-style queries.
Index-aware plans.
One JSON document — store · filter · project · sort · limit. Equality and range filters are served from IndexedDB indexes automatically; the plan is visible live.
Everything a real database client has.
Minus the connection string.
Row inspector
Type-aware editor with NULL handling and a syntax-highlighted JSON tree.
Schema inference
Samples 500 rows per store. Exports to TypeScript or Dexie in one click.
Snapshots & diffs
Capture state, diff later. Field-level add / remove / change, one-click restore.
Bulk import / export
NDJSON, CSV, SQL INSERT, ZIP. Non-JSON types round-trip losslessly.
The Application panel treats browser storage as an afterthought.— Notes from the authors
So we built the tool we wanted.
Open source · MIT
Inspect the inspector.
IdxBeaver runs entirely in your browser — no telemetry, no servers, no account. Read the source, file an issue, or grab the unpacked build to run a fork.
