Live table, real cookies
Parsed straight from document.cookie on this page — not a simulation.
See every cookie visible to this page, edit values inline, add new cookies with a custom expiry and path, and delete any of them with one click.
| Name | Value |
|---|
This only shows cookies readable by JavaScript on this page. HttpOnly cookies are invisible here by design — browsers block script access to them to reduce the damage a cross-site scripting bug could do. Editing re-sets a cookie using path=/, which updates most cookies correctly but may create a duplicate if the original was set with a different, more specific path.
Nothing here leaves your browser — every change happens directly through document.cookie.
Parsed straight from document.cookie on this page — not a simulation.
Full control over cookies this page can see, with a custom expiry and path.
Explains clearly why some cookies can never appear here, instead of pretending otherwise.
Inspect and manage the cookies this exact page can see, right from the table.
document.cookie gives script a simple, flat string of name=value pairs for the current page — it does not expose each cookie's path, domain, expiry or security flags the way a server sees them in the Cookie header. That is a real limitation of the browser API, not something this tool chooses to hide. Writing a cookie, by contrast, does let you set those attributes, which is how this editor's add and delete actions work.
All you get back is name=value; you cannot ask the browser which path or domain a given cookie was set with.
Setting document.cookie lets you specify expires, path, domain, SameSite and Secure, but each write only affects one cookie at a time.
Cookies flagged HttpOnly by the server are completely invisible to JavaScript, on every website, by browser design.
A page can only see cookies that match its own domain and path rules, never another site's cookies.
Common questions about scope and limitations.
No. Cookies are scoped to the domain and path that set them, and document.cookie only ever returns cookies that belong to the current page's origin. This tool can only manage cookies visible to pandatoolbox.com pages, never another site's cookies.
Cookies marked HttpOnly are deliberately hidden from JavaScript's document.cookie as a security measure against cross-site scripting attacks. If a site sets HttpOnly cookies, no browser-based tool, including this one, can read or list them.
A cookie is only overwritten when the new one is set with the exact same name, path and domain as the original. This tool edits using the root path (/), which updates most cookies correctly, but a cookie originally set with a more specific path may end up duplicated rather than replaced.
It calculates a future date that many days from now and writes it as the cookie's expires attribute. Leaving it blank creates a session cookie, which most browsers clear when the browser itself is closed.
No. Every read, add, edit and delete happens directly through document.cookie in your browser. My Panda Toolbox never receives this data.