🍪 Valid Cookie Generator

Exact format as your example | Google.com style cookies
📋 Example Format (from your input):
{
  "name": "__Secure-STRP",
  "value": "AEEP7gIcTElufz-PYR5KzbFA5smcp3O80q2oaYDTo7hPrFj2B2VrrrDZY_ofF5cgalVATZd3KjteYxtndrhed8qkq_V0uVHWcote",
  "domain": ".google.com",
  "path": "/",
  "expires": 1807897934,
  "httpOnly": false,
  "secure": true,
  "session": false,
  "sameSite": "Strict"
}
📋 VALID COOKIES (5 cookies) - Same format as your example
[
    {
        "name": "__Secure-BUCKET",
        "value": "Mjp2",
        "domain": ".youtube.com",
        "path": "\/",
        "expires": 1782522557,
        "httpOnly": true,
        "secure": true,
        "session": false,
        "sameSite": "None"
    },
    {
        "name": "SOCS",
        "value": "8U5eUbBunGw_aHn0nUrFoxzf3U9LhBmsUHz7zV-g7i7lX4mrrMp1jJOGoEL0d38EMrGYdN-kSOsKAHxQ1jRtcU3gxFTujwUnqENPz2Sr8Yz",
        "domain": ".gmail.com",
        "path": "\/",
        "expires": 1785132619,
        "httpOnly": true,
        "secure": true,
        "session": false,
        "sameSite": "Lax"
    },
    {
        "name": "__Secure-BUCKET",
        "value": "HYTJ",
        "domain": ".drive.google.com",
        "path": "\/",
        "expires": 1787532259,
        "httpOnly": false,
        "secure": true,
        "session": false,
        "sameSite": "Lax"
    },
    {
        "name": "__Secure-BUCKET",
        "value": "CnTe",
        "domain": ".google.com",
        "path": "\/",
        "expires": 1786181117,
        "httpOnly": true,
        "secure": true,
        "session": false,
        "sameSite": "Lax"
    },
    {
        "name": "SSID",
        "value": "czcXKK2wyt7OZmbKSAbgGJRrgFxViBFmLJ5ZG=S6cJu7NrNxjuIwb6ehBX",
        "domain": ".accounts.google.com",
        "path": "\/",
        "expires": 1802468383,
        "httpOnly": false,
        "secure": true,
        "session": false,
        "sameSite": "None"
    }
]
✅ Valid Cookie Format Features:
• Exact same structure as your example JSON
• Includes all fields: name, value, domain, path, expires, httpOnly, secure, session, sameSite
• Real Google cookie names (__Secure-STRP, AEC, NID, __Secure-BUCKET, etc.)
• Long random values like real Google cookies
• Proper expires timestamps (Unix format)
• Correct security flags (Secure, HttpOnly, SameSite)
• Domain: .google.com and related domains
✅ Copied to clipboard!