πŸͺ Cookie Editor

πŸ“‹ Cookie Manager
πŸ”§ Cookie Parser
βš™οΈ Code Generator
❓ Help

πŸ“‹ Current Page Cookies (0)

πŸͺ

No cookies found

Click "Add Cookie" to manually add one, or switch to "Cookie Parser" tab to parse cookie strings

πŸ”§ Cookie String Parser

Paste Set-Cookie or Cookie header strings to parse into structured cookie data.

πŸ“Ž Examples

βš™οΈ Cookie Code Generator

Select cookies from the table and generate code in different formats.

JavaScript Code

// Select cookies to generate JavaScript code

Set-Cookie Header

// Select cookies to generate Set-Cookie headers

Cookie Request Header

// Generate Cookie request header string

Netscape / cURL Format

// Generate cURL cookie file format

❓ Help

What is a Cookie?

A cookie is a small piece of data stored on the user's browser by a website. It's used to maintain login sessions, record preferences, track user behavior, and more. Each cookie has a name, value, and optional attributes (expiry, domain, path, security flags, etc.).

How to view cookies for the current site?

Open the "Cookie Manager" tab. The tool automatically reads all cookies under the current domain and displays them in a table. Click "Refresh" to re-read. Note: HttpOnly cookies cannot be accessed via JavaScript for security reasons.

Cookie Attributes

  • Domain β€” Specifies which domain receives the cookie
  • Path β€” Specifies the URL path the cookie applies to
  • Expires/Max-Age β€” When the cookie expires and is deleted
  • Secure β€” Cookie is only sent over HTTPS
  • HttpOnly β€” Prevents JavaScript access, protects against XSS
  • SameSite β€” Controls cross-site request cookie sending (Strict/Lax/None)

Privacy Notice

All operations are performed locally in your browser. Cookie data is never uploaded to any server. Exported JSON files are for local backup and migration purposes only.