What is Cookies Manager
Cookies Manager is a local cookie workspace for parsing, editing, filtering, importing/exporting, and persistence to speed up API and session troubleshooting.
Key Features
- Add and edit cookie entries with name, domain, path, expiration, Secure, HttpOnly, and SameSite.
- Batch import cookie strings and merge entries by name + domain + path.
- Filter by keyword and domain to locate target cookies quickly.
- Export to plain text or JSON for debugging, sharing, or backups.
- Keep data in local browser storage so it remains after refresh.
Steps
- Add cookies manually or import multiple cookie lines.
- Use search and domain filter to narrow the list.
- Copy, edit, or delete specific entries from the list.
- Export as text or JSON for integration and record keeping.
Use Cases
- API debugging with controlled cookie sets.
- Session troubleshooting for login, auth, and cross-site behavior.
- QA preparation by importing and exporting repeatable cookie datasets.
Notes
HttpOnlymeans frontend scripts cannot read cookies in browsers; this tool still manages text records locally.- For cross-site testing, verify
SameSite=Nonetogether withSecure. - All processing stays in your browser and does not upload cookie data.
FAQ
Why are some imported cookies overwritten?
Entries are matched by name + domain + path, so the same key is updated instead of duplicated.
Why is my expiration value invalid?
Max-Age must be numeric seconds, while Expires must be a browser-parseable date-time string.