Browser Storage Usage Viewer - Online See LocalStorage & IndexedDB Quota
Check current browser storage usage (localStorage, IndexedDB, Cache) and available quota. Handy debugging tool.
UD5 Toolkit
Real‑time overview of your browser's storage usage and limits
Key‑value store (permanent)
Data for one session only
Stored by websites
IndexedDB, Cache API, etc.
navigator.storage.estimate()) gives you an estimate of how much storage your origin is using and the total quota available. It includes IndexedDB, Cache API, service workers, and other site data, but not cookies or Web Storage (localStorage / sessionStorage) – those are typically included in the usage figure as well, depending on the browser.localStorage.clear(), sessionStorage.clear(), or delete IndexedDB databases with indexedDB.deleteDatabase(). The Storage API also offers navigator.storage.persist() and navigator.storage.persisted() to request persistent storage.Check current browser storage usage (localStorage, IndexedDB, Cache) and available quota. Handy debugging tool.
Estimate how many MB/GB your storage can hold based on navigator.storage.estimate() and display as a pie chart.
Explore your website’s IndexedDB databases and object stores. Add, delete, and inspect records. Like phpMyAdmin for IndexedDB.
Explore your website’s IndexedDB databases and object stores. Add, delete, and inspect records. Like phpMyAdmin for IndexedDB.
A GUI to manage all keys in your browser's localStorage. Add, delete, edit, and export data. Debug progressive web apps.
View, edit, and manage JSON objects saved in your browser's localStorage. Delete, export, or import keys. No setup.