Egg Carton Date Tracker – First In, First Out
Label virtual egg cartons with collection dates. The tool sorts by oldest first to use fresh eggs within 3 weeks and maintain rotation.
UD5 Toolkit
Simple key-value storage viewer powered by IndexedDB
This database is empty. Add your first key-value pair to get started.
Loading entries...
Try a different search term.
get(key), set(key, value), del(key), and clear() — similar to localStorage but with asynchronous operations and much larger storage capacity. Under the hood, it uses a single IndexedDB database (default: keyval-store) with one object store (default: keyval). Values can be any structured-cloneable type: strings, numbers, objects, arrays, Dates, Blobs, and more.
navigator.storage.estimate(). Compared to localStorage's hard 5–10 MB limit, IndexedDB offers significantly more room for data.
navigator.storage.persist() to reduce eviction risk. Also note that clearing browser data/cache or using private/incognito mode will remove IndexedDB data.
getAll(), serialize to JSON, and save the file. Regular exports are recommended for critical data since browser storage can be cleared unexpectedly.
Label virtual egg cartons with collection dates. The tool sorts by oldest first to use fresh eggs within 3 weeks and maintain rotation.
Add your board game boxes and their dimensions to see total shelf feet needed. Plan your storage before your collection outgrows the Kallax.
Create virtual shelves and label bins with their contents. Search your digital inventory to find that one extension cord without digging through boxes.
Enter the approximate age of opened paint and answer visual/olfactory questions to see if it's still usable. Reduce waste.
Type two letters and see if your chosen font has a kerning pair for them. Adjust tracking and see live spacing.
Browse the OKLCH color space with sliders for lightness, chroma, and hue. See the CSS oklch() code. Modern and accessible.
Explore your website’s IndexedDB databases and object stores. Add, delete, and inspect records. Like phpMyAdmin for IndexedDB.
Estimate how many MB/GB your storage can hold based on navigator.storage.estimate() and display as a pie chart.
Call navigator.storage.estimate() and display a visual pie chart of used vs. available browser storage. For PWA debugging.
Explore your website’s IndexedDB databases and object stores. Add, delete, and inspect records. Like phpMyAdmin for IndexedDB.
List cached responses for your domain. View headers, content, and delete individual entries. Understand your PWA's cache.
Check current browser storage usage (localStorage, IndexedDB, Cache) and available quota. Handy debugging tool.