-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting
This page covers common issues and their solutions. If your problem is not listed here, please open an issue on GitHub or ask in Discussions.
Solution: The icon may be hidden in Chrome's extension overflow menu.
- Click the puzzle piece icon (Extensions) in the top-right corner of Chrome.
- Find Cookie Manager in the list.
- Click the pin icon next to it to pin it to your toolbar.
Possible causes:
- The page has not set any cookies. Some pages genuinely have no cookies. Try visiting a page that requires login or has tracking.
-
You are on a Chrome internal page. Extensions cannot access cookies for
chrome://URLs, the Chrome Web Store, or other extension pages. - The cookies belong to a different subdomain. Cookie Manager shows cookies for the current tab's domain. If the cookies are set on a different subdomain, they may not appear.
Possible causes:
- Domain Protection is enabled. Check if the domain is in your protected domains list. Go to Settings (Options page) and review your protected domains.
- Read-Only Mode is enabled. Check Settings to see if read-only mode is turned on.
-
The cookie is set by a different domain. You can only modify cookies that Chrome's
cookiesAPI has access to for the current context.
Possible causes:
- No cookies exist for the current site. Verify that cookies are listed in the Cookies tab before exporting.
- The page is a restricted URL. Chrome internal pages and the Web Store do not expose cookies to extensions.
Possible causes:
- The rule is toggled off. Check the Rules tab and make sure the rule's toggle is enabled.
-
Chrome was closed. Auto-delete rules use Chrome's
alarmsAPI, which only runs while Chrome is open. If Chrome was closed during the scheduled time, the rule will run at the next opportunity. - Service worker was suspended. MV3 service workers can be suspended by Chrome to save resources. The alarm will fire when the service worker wakes up, but there may be a slight delay.
Cookie Manager follows your system preference for dark mode. To change it:
- macOS: System Settings > Appearance > select Dark
- Windows: Settings > Personalization > Colors > choose Dark
- Linux: Depends on your desktop environment
If your system is set to dark mode but Cookie Manager still shows light mode, try closing and reopening the popup.
This is normal behavior. When you delete a cookie and then reload the page, the website may set the cookie again as part of its normal operation. Websites commonly re-create cookies on every page load.
To handle this:
- Use Auto-Delete Rules to continuously clean cookies on a schedule.
- Use browser-level settings to block cookies from specific sites if you want to prevent them from being set at all.
Possible causes:
-
Invalid JSON format. Make sure the file contains a valid JSON array of cookie objects. Each cookie needs at least
name,value, anddomainfields. - Domain mismatch. Cookies are created for the domain specified in the JSON. If the domain is incorrect or unreachable, the creation may fail silently.
-
Secure cookies on HTTP. If a cookie has the
secureflag set totrue, it can only be created for HTTPS domains.
- Go to
chrome://extensions/. - Find Cookie Manager and click "Remove".
- Reinstall from the Chrome Web Store.
If you installed from source:
- Make sure you are using Chrome version 110 or later.
- Try pulling the latest code from GitHub.
- Remove and re-load the unpacked extension.
Keyboard shortcuts work when the Cookie Manager popup is focused. Make sure:
- The popup is open (click the toolbar icon).
- Focus is inside the popup window (click inside it).
- You are not focused on a text input field (some shortcuts are disabled when typing).
Available shortcuts:
-
/-- Focus search -
Ctrl+N-- Create new cookie -
Ctrl+E-- Export cookies -
Ctrl+Shift+D-- Export debug bundle -
Escape-- Close modal or dialog
If Cookie Manager's context menu items (Clear cookies, Export cookies, etc.) do not appear when you right-click:
- Make sure the extension is enabled at
chrome://extensions/. - Try disabling and re-enabling the extension.
- Reload the page -- context menus are registered when the service worker starts.
-
Debug bundle: Press
Ctrl+Shift+Din the Cookie Manager popup to export a debug bundle. This contains diagnostic information (no cookie values) that can help troubleshoot issues. - GitHub Issues: Report a bug
- GitHub Discussions: Ask a question
- Security issues: Email security@zovo.one (do not open a public issue)