Редактор cookie показує всі cookie для поточного домену в чистій, сортованій таблиці.
Cookies drive authentication, session management, user preferences, consent tracking, analytics, and A/B testing — but managing them during development is tedious. Chrome DevTools shows cookies in the Application tab, but the interface is basic and requires navigating through multiple panels. Cookie Editor puts everything in one clean table: every cookie for the current domain with all its properties visible at a glance. Edit any cookie value by clicking on it — changes are saved to the browser's cookie store immediately. Add brand new cookies with custom names, values, expiry dates, paths, and flags. Delete cookies individually or clear them all. The table shows security flag badges (S for Secure, H for HttpOnly) so you can verify that sensitive cookies have proper protection. Session cookies are distinguished from persistent cookies by their expiry column. It's the tool you wish browser DevTools had built-in.
Every cookie for the current domain is displayed in a sortable table with columns for Name, Value, Expires (or "Session"), Path, and Flags. The table is clean and scannable — see all cookies at a glance.
Click any cookie value to edit it in place. Type the new value and it's saved to the browser's cookie store immediately. No need to delete and recreate the cookie — just change the value directly.
Click "Add" to create a new cookie with a custom name, value, expiry date, path, and domain. Set Secure, HttpOnly, and SameSite flags. The cookie is created in the browser's cookie store immediately.
Delete a single cookie by clicking its delete button, or "Delete All" to clear every cookie for the current domain. Useful for testing logged-out states or consent flows.
Visual badges indicate security flags: S (Secure — HTTPS only), H (HttpOnly — not accessible via JavaScript), SameSite value (Strict, Lax, None). Verify at a glance that sensitive cookies are properly protected.
The Expires column clearly distinguishes session cookies ("Session" — deleted when browser closes) from persistent cookies (showing the actual expiry date and time). No ambiguity about cookie lifetime.
Inspect session cookies to verify they're set correctly after login. Edit the session token to test expired or invalid session handling. Delete the session cookie to test the logged-out experience.
Delete the consent cookie to re-trigger the cookie consent banner. Edit consent values to test different consent states (all accepted, partially accepted, all rejected).
Check that authentication cookies have HttpOnly (preventing XSS theft), Secure (HTTPS-only), and SameSite=Strict or Lax (preventing CSRF). Missing flags are immediately visible in the table.
Add cookies to simulate logged-in states, A/B test variants, feature flag assignments, or locale preferences without going through the normal user flows.
Edit a cookie's expiry to a past date and reload to test how the site handles expired cookies. Or change a session cookie to a persistent one to test persistence behavior.
Open the DevSuite Pro popup and click the Cookie Editor icon. All cookies for the current domain are loaded into the table.
Scroll through the cookie table. Click column headers to sort by name, value, or expiry. Security flag badges show which cookies are Secure and HttpOnly.
Click any value cell to edit it inline. Type the new value — it's saved to the cookie store immediately. The page may need a reload to reflect the change.
Click "Add" to create a new cookie with full parameter control. Click the delete icon on any row to remove that cookie. "Delete All" clears everything.
After editing cookies, reload the page to see how the changes affect the site — login state, preferences, consent banners, etc.
Встановіть DevSuite Pro безкоштовно та отримайте понад 39 інструментів розробника для вашого браузера.