Inspect script-visible cookies (document.cookie), localStorage, and sessionStorage for this origin in one place. Search,
copy values, and export JSON — read-only, with no data sent to DroidXP. Use it next to the
Local Storage Manager when you need to edit localStorage.
document.cookie are listed.
HttpOnly cookies (common for session tokens) are hidden from scripts — use browser DevTools → Application → Cookies for the full set.
| Name | Value (preview) | Approx. size | Actions |
|---|
| Key | Value (preview) | Approx. size | Actions |
|---|
| Key | Value (preview) | Approx. size | Actions |
|---|
Three separate stores, all scoped to the current origin (scheme + host + port):
document.cookie. This is the JavaScript-visible subset of cookies for the current document path; attributes like
HttpOnly, Secure, SameSite, and exact path are not exposed here.
Cookies marked HttpOnly cannot be read by JavaScript — they still appear in DevTools → Application → Cookies, but not in document.cookie. First-party vs third-party
rules and SameSite also affect what the browser sends and what scripts can read.
This page is a viewer: it does not set or delete cookies (which would require specific paths and attributes). To edit localStorage in depth, use DroidXP’s
Local Storage Manager or your browser’s DevTools.
Export active tab downloads a JSON object of name/key → value for the visible tab. Export all includes cookies, localStorage, and sessionStorage plus origin and timestamp — useful for auditing your own dev environment (never share exports that contain secrets).
No. Everything is read in your browser with the Web Storage API and document.cookie. Nothing is transmitted to DroidXP.
Browsers intentionally hide them from JavaScript. Use DevTools → Application → Cookies to inspect headers, paths, and flags for the full picture.
It is isolated per tab. If you opened this tool in a fresh tab, only keys written in this tab appear. Your app’s storage may live in another tab or window.
The Storage Viewer combines cookies + both storages in a read-only dashboard. Local Storage Manager focuses on editing, importing, and clearing
localStorage only.
It is a rough estimate (UTF‑16 length × 2). Use it for comparisons, not exact quota accounting.
If a storage API is blocked or empty, the export still lists that section with whatever keys were readable — often an empty object.
Only cookies visible to document.cookie on this page’s origin. Embedded third-party frames have their own storage and are not merged here.
Treat exports like secrets if they contain tokens. Redact before sharing; prefer synthetic data for bug reports.