Is localStorage uploaded to EverydayTools?
No. The viewer only calls localStorage in your browser. Keys and values are never sent to our servers during normal use.
Inspect, search, edit, and export localStorage for the current site—JSON preview, quota meter, import/export in advanced mode. All client-side.
localStorage editor for this origin — never uploaded. Session storage
0 bytes / ~5.0 MB
Showing 0 of 0
This origin has no stored data—or you cleared it. Add a key below or insert sample data to explore the inspector.
localStorage.setItem("theme", "dark")A localStorage viewer lists key-value pairs stored for the current website origin in your browser, with search, JSON preview, edit, export, and delete—without sending data to a server.
localStorage is part of the Web Storage API. Each origin (protocol + host + port) gets an isolated key-value store that persists across page reloads and browser restarts until you clear it.
Developers use localStorage for user preferences, cached API responses, feature flags, and client-side tokens. Debugging often means finding the right key, checking whether a value is valid JSON, and confirming you are not over the ~5 MB per-origin quota.
This tool reads localStorage only for the page you open it on—the same data any script on that origin could already access. You can search keys and values, pretty-print JSON, edit entries in place, export a backup, import JSON, and bulk-delete stale keys. Nothing is uploaded; clipboard and file downloads stay on your device.
Inspect and edit this origin's localStorage in the browser—search, JSON view, export—never uploaded.
Concise answers for common searches — definitions, steps, and comparisons.
No. The viewer only calls localStorage in your browser. Keys and values are never sent to our servers during normal use.
Most browsers allow about 5 MB per origin. Each key and value counts toward the limit as UTF-16 text (roughly 2 bytes per character).
localStorage persists until cleared. sessionStorage is cleared when the tab closes. Use Session Storage Viewer for tab-scoped data.
Key-value strings scoped to origin; this tool uses the standard localStorage API in your browser with no server round-trip.
Formula
Origin = protocol + hostname + port
Quota ≈ 5 MB per origin (browser-dependent)Load this tool on the same origin as the app you are debugging (e.g. your localhost dev server or staging URL).
Use the search box to find auth tokens, settings JSON, or feature-flag keys. Switch sort order if you have many entries.
Enable advanced mode for pretty-print JSON, expand large values, and copy or download individual keys.
Edit a value inline, add a test key, delete one entry, or clear all—changes apply immediately to this origin's localStorage.
Export all keys as JSON for backup; import JSON to restore test data (confirm overwrite when prompted).
Input
Search: "token" or "auth"Output
Highlight matching keys · edit or delete the rowQuickly locate JWT or session blobs left over after logout bugs.
Input
12 keys · 4.2 MB usedOutput
Usage bar warns near 80% of ~5 MBAvoid QuotaExceededError when your app writes large JSON caches.
Common real-world scenarios where this tool saves time.
Inspect JSON preference objects and toggle test values without redeploying.
Delete one bad key or export first, then clear all, when a PWA serves stale data.
Import a JSON fixture into localStorage to reproduce a customer state on staging.
Step-by-step chains that connect related tools for common tasks.
| Storage | Lifetime | Scope | Best for |
|---|---|---|---|
| localStorage | Until cleared | Per origin | Preferences, cached data, long-lived client state |
| sessionStorage | Until tab closes | Per origin, per tab | Wizard state, temporary form data |
| Cookies | Expires per Set-Cookie | Can be httpOnly / cross-subdomain | Auth sessions, server-readable tokens |
| Mode | Includes | Use when |
|---|---|---|
| Simple | List, search, edit, add, refresh | Quick key lookup during everyday debugging |
| Advanced | JSON panel, bulk select, import/export, shortcuts | Large datasets or JSON-heavy apps |
| Related tool | Use this tool when | Use related tool when |
|---|---|---|
| Session Storage Viewer | You need data that survives browser restarts (preferences, caches). | You need tab-scoped state that clears when the session ends. |
| JSON Formatter | You are browsing keys inside localStorage on a live origin. | You have a raw JSON blob to format or validate outside the browser store. |
Advertisement
All key-value pairs for the current origin. You can read, edit, add, delete individual keys, or clear everything. Values support JSON syntax highlighting when they parse as JSON.
No. Storage is isolated per origin. This tool only accesses localStorage for the site you opened it on—other domains are never exposed.
No. Inspection, edits, export, and import run entirely in your browser. Keys and values are never uploaded to EverydayTools servers.
Typically about 5 MB per origin. Keys and values are UTF-16 strings, so storage size depends on character count. The tool shows current usage and warns when you are near the quota.
localStorage persists until explicitly cleared. sessionStorage clears when the tab or browser session ends. Both share the same ~5 MB limit and same-origin rules. Use our Session Storage Viewer for tab-scoped data.
Yes, in advanced mode. Export downloads a JSON object of all keys. Import merges or replaces entries after you confirm—useful for backups and test fixtures.
localStorage is read and written only via your browser's APIs on the current origin. Keys and values are not uploaded or stored on EverydayTools servers during normal use.
Displays the same data DevTools Application tab would show for localStorage on this origin; quota display is approximate per browser.
Editing or clearing storage can break app behavior—use on dev/staging or after exporting a backup.
Part of Developer Tools
More free tools for the same workflow.
Free JSON path finder — click any value in a formatted JSON tree to instantly copy its JSONPath expression. Ideal for navigating deep API payloads and config files. No signup.
Free sessionStorage viewer — inspect, add, edit, and delete sessionStorage key-value pairs in your browser. Useful for debugging web apps and testing session data. No signup.
Paste any HTTP Cookie header, Set-Cookie header, or curl command to extract name, value, domain, path, expiry, Secure, HttpOnly, and SameSite flags. Build and export cookies too. No signup.
Advertisement
Reviewed by EverydayTools Editorial Team on 2026-05-22.