Local JSON Data Explorer - Online Browser Storage Viewer
View, edit, and manage JSON objects saved in your browser's localStorage. Delete, export, or import keys. No setup.
UD5 Toolkit
| Key | Value Preview | Type | Size | Actions |
|---|
setItem() call will throw a QuotaExceededError. Note that localStorage uses UTF-16 encoding, so each character takes 2 bytes of storage.
getItem, setItem, removeItem) and similar storage limits (~5 MB). Use localStorage for long-term data and sessionStorage for temporary, session-only data.
removeItem() or clear()), it cannot be recovered through the browser. There is no built-in recycle bin or undo feature for localStorage. This is why we recommend exporting your data as a backup before performing any delete or clear operations. The exported JSON file serves as your safety net.
let total = 0; for (let key in localStorage) { total += (key.length + localStorage.getItem(key).length) * 2; }View, edit, and manage JSON objects saved in your browser's localStorage. Delete, export, or import keys. No setup.
Check estimated usage and quota for local and session storage on your browser. Quick dev tool.
Write Markdown and instantly print/save as a styled PDF. Choose from multiple themes. Uses browser print function for high-quality output. Local only.
Change how many times an animated GIF loops. Set to infinite or a specific number. Download the modified GIF.
Write a module and import it. See how browser handles module scripts. Learn modern JS structure.
Write in Markdown and convert it to a styled PDF using your browser's print engine. Customize font and margins. No upload.
Paste SQL INSERT statements and extract the data into a clean CSV table. Works with multiple rows. Local parser.
Paste a CSS gradient and export a vertical swatch image. Ideal for design documents. No server needed.
Log your coin collection with country, year, grade, and images. Filter and export as spreadsheet. All data local.
A tiny tool that hooks into the console and lets you export all messages to a file. Helpful for non‑technical bug reporting.
Check current browser storage usage (localStorage, IndexedDB, Cache) and available quota. Handy debugging tool.
Draw and edit SVG vector graphics in the browser. Basic shapes, text, and freehand. Export raw SVG code or as a file. No server, fully local.
Easily add rounded corners to any image. Adjust corner radius and background color. Download as PNG with transparency. Client-side canvas editing.
Parse CSV files into structured JSON arrays or objects. Customize delimiters and headers. Processed completely in your browser to protect sensitive data.