Cookie Store API Tester - Online Async Cookie Read/Write
Read, write, and delete cookies using the modern Cookie Store API. Monitor change events. No more document.cookie parsing.
UD5 Toolkit
Decode, format, and analyze browser cookie strings instantly. Supports URL decoding and JSON export.
Paste a cookie string and click Parse to see decoded data.
| # | Name | Value (decoded) | Raw Value | Size |
|---|
A cookie string is a semicolon-separated list of key-value pairs (e.g., key=value; key2=value2). It's the raw format sent in the HTTP Cookie header. Some characters are URL-encoded to ensure safe transmission.
Browsers automatically URL-encode special characters (like @, {, }, spaces) in cookie values. Our parser decodes them into readable format using decodeURIComponent().
The Size column shows the byte length of the raw cookie name and value pair (including =), matching the actual bytes sent over the network. This helps identify large cookies that may impact performance.
Yes! You can copy the cookie string from browser DevTools (Application tab → Cookies → select domain → copy as string) or from the document.cookie JavaScript API. Paste it here for instant analysis.
Pro tip: Use the Copy as JSON button to export the parsed data for debugging or logging. The table copy output is tab-separated for spreadsheets.
Common cookie limitations: Browsers typically allow up to 50-180 cookies per domain, each up to 4096 bytes. Use this parser to audit cookie sizes and stay within limits.
Read, write, and delete cookies using the modern Cookie Store API. Monitor change events. No more document.cookie parsing.
Store passwords and notes encrypted with a master passphrase. Data lives only in your browser's localStorage. No cloud.
Scale a classic homemade playdough recipe to any amount. Choose colors with safe options. Simple local calculator.
Apply a tint remover that guesses the original colors from a sepia photo. Not perfect, but fun. All in canvas.
A minimalist text notepad that auto-saves to your browser's localStorage. No ads, no signup, no data leaves your device. Perfect for quick ideas.
Experiment with the Async Clipboard API: read/write text and images from the clipboard. Verify permissions and see demo code.
Apply tone mapping algorithms to bring out details in highlights and shadows. Simulate HDR from a single image.
Enter a component name and get a basic Vue 3 Single File Component template with script setup. Fast scaffolding.
Generate a Next.js page.tsx file with Server Component or Client Component. Layout and metadata included.
Provide a hook name and select features (state, effect, callback). Get a complete React custom hook with TypeScript. Faster development.
Paste your CSS and see warnings for properties that have limited browser support. Links to CanIUse. Modernize safely.
Browse the built‑in styles that browsers apply to HTML elements. Understand why your page looks different. Static reference.
Record your screen, window, or tab with audio directly in the browser. Download the recording as a WebM file. No upload.
Decode an image progressively using the ImageDecoder API. See partial results and metadata. Modern alternative to <img>.
Explore your website’s IndexedDB databases and object stores. Add, delete, and inspect records. Like phpMyAdmin for IndexedDB.
Scan for nearby Bluetooth Low Energy devices using the browser. Read device names and signal strength. Experimental API.
Parse a Snowflake ID (used by Discord, Twitter) into its timestamp, worker, and sequence components. Instant local decoding.
Encode any file into a Base64 string that you can copy, or decode a Base64 string back to a downloadable file. Pure frontend.
Select a folder of images and start a full‑screen slideshow right in your browser. Adjust interval and transition. No upload.
Paste a JSON Web Token and decode its header and payload. Verify signature if you provide the secret. Fully local.
Paste a human‑readable date (like 'next Friday' or 'March 5, 2023') and convert it to ISO 8601 format. Quick and tolerant.
See how many tabs you have open and estimate memory usage based on navigator object. Fun productivity check.
Fill in name, match URL, and description to get a ready‑to‑edit UserScript header. Start your browser extension easily.
Generate a hash showing how trackers can fingerprint your browser (canvas, WebGL, fonts). Educational and privacy‑aware.
Look at HTTP headers and JavaScript objects to guess which browser extensions might be installed. For awareness.
Freeze your live camera, then scan a QR code from the static frame. Works when auto‑scan fails. Private.
Paste a raw server log snippet and see a structured table with IP, method, URL, and status. Quick audit.
See exact dimensions of your current browser inner/outer window, screen resolution, and pixel ratio. Developer debug.
Paste a data: URL and instantly download the file it represents. Supports all MIME types. Simple extraction.
Enter Braille dot numbers (1‑6) or paste Unicode Braille to decode into English text. Companion to text‑to‑Braille.