Cookie Manager
Cookies are stored in your profiles. When you save a profile to a .kameleo file, it contains the cookies as well. If you transfer the .kameleo file to another computer, the cookies will be loaded with the profile.
The Cookie Manager makes it simple to:
- Import cookies from other systems into Kameleo
- Export cookies from Kameleo for use in other tools or environments
Accessing the Cookie Manager
To access a profile's cookies:
Click the three dots next to the "Start" button and select the "Cookies" tab.

- Within the "Cookies" tab, you will be presented with a variety of options, such as:
- Use the "Search by domain" field at the top to filter cookies for specific domains.
- You can select cookies in two ways, as well as deselect them:
- Select all - Selects all cookies in the current view
- Manual selection - Check individual cookies by clicking their checkboxes
- Deselect all - Clears all selections
- After selecting cookies, choose your export destination:
- Export to Clipboard - Copies cookies directly to your clipboard
- Export to JSON File - Saves cookies as a .json file
- We also have the import options:
- Import from Clipboard - Paste cookies directly from your clipboard
- Import from JSON File - Load cookies from a saved .json file

Kameleo exports/imports cookies in the following JSON format:
[
{
"domain": "mail.google.com",
"name": "COMPASS",
"path": "/mail",
"value": "gmail=hjlasdflsdafmsakdfasdikads3f",
"hostOnly": false,
"httpOnly": true,
"secure": true,
"sameSite": "unspecified",
"session": false,
"storeId": "0",
"expirationDate": 1568986993
}
]
The format closely follows the Chrome cookies API structure, making it highly compatible across different tools in the web automation and testing ecosystem. It's essentially become a de facto standard for cookie import/export.
