Bokal › editthiscookie alternative
Looking for an EditThisCookie alternative? Bokal is the open-source successor.
EditThisCookie was delisted from the Chrome Web Store in December 2024, and a malicious copycat took its name. Here is what happened, what to check before you install a replacement, and how to move your cookies across.
Last updated 26 August 2026. Competitor details below were verified against published manifests and repositories on that date.
What happened to EditThisCookie
EditThisCookie was one of the most widely used cookie editors on Chrome, reportedly with around 3 million users. In December 2024 it disappeared from the Chrome Web Store. Google never published an official reason. The most plausible explanation is mundane: it was a Manifest V2 extension and never migrated to Manifest V3, and Google began removing MV2 extensions around that time.
The part that matters more: after the original was gone, a copycat extension took the EditThisCookie name and was caught harvesting login credentials and session tokens and pushing phishing content. It reportedly grew past 50,000 users before it was removed.
Why this matters for whatever you install next. A cookie editor by definition can read and write your session cookies, including HttpOnly ones. That is session-hijack-grade access to any site you point it at. The lesson from the copycat is not "some developers are bad" — it is that a tool holding this much access should be trustworthy by construction, not by reputation, because reputation is exactly the thing an attacker can steal.
What to actually check before installing a cookie editor
- Read the install prompt. If it says "Read your browsing history", the extension is requesting the
tabspermission — access to the URL and title of every tab you have open, not just the one you are editing. - Check for install-time site access. An extension declaring
host_permissionsgets access to matching sites the moment you install it. One declaringoptional_host_permissionshas to ask you first. - Look for the source. Being open source does not make a build trustworthy on its own, but it does let you read the permission and network code, and it means claims can be checked instead of believed.
- Watch for remote code. A content security policy of
script-src 'self'means everything the extension runs ships inside the package and cannot be swapped out later.
What Bokal does
Bokal is a Manifest V3 cookie manager, GPL-3.0, with no server and no account. This is the entire published manifest permission block:
permissions: ['cookies', 'storage', 'sidePanel', 'unlimitedStorage', 'alarms', 'activeTab']
optional_host_permissions: ['<all_urls>']
// no host_permissions
content_security_policy: { extension_pages: "script-src 'self'; object-src 'self'" }
- No
tabspermission, so no "read your browsing history" line on the install screen. Bokal usesactiveTab, which reads the current tab's URL only after you click the toolbar button. - No site access at install.
<all_urls>appears only as an optional grant — the set Bokal is allowed to ask for. By default it requests just the origin of the tab you opened it on. - Free users make zero network calls. There is no telemetry and no analytics. The only external service Bokal ever contacts is ExtensionPay, for the optional Pro licence check, and only once you open the upgrade page. You can verify this in DevTools → Network.
To be blunt about the trade-off: a per-site grant persists until you revoke it in chrome://extensions → Details → Site access, and while granted Bokal can read that origin's cookies. "Minimal" here means narrow — one site at a time, nothing at install — not weak. Within a site you have granted, it is fully capable, because that is the job.
Moving your cookies across
Bokal reads EditThisCookie's JSON export format directly, so switching costs nothing:
Find your old export
If you still have an EditThisCookie JSON export saved, you can use it as-is. The extension itself is no longer installable from the store.
Open Bokal on the site
Click the Bokal toolbar icon on the site whose cookies you are restoring, and grant access to that one site when prompted.
Import
Press Import and select the JSON file. Bokal recognises EditThisCookie and Cookie-Editor arrays, its own format, Playwright
storageState, and Playwright/Puppeteer cookie arrays. It will also parse a rawCookie:header string.
One honest limitation: Bokal exports Netscape cookies.txt but does not currently import it. JSON and cookie-header strings are the supported import paths.
Frequently asked
Is EditThisCookie coming back?
There is no indication that it is. It was removed in December 2024 and Google gave no official reason. Treat any extension currently using that name with caution — a credential-harvesting copycat used it before.
Is Bokal a fork of EditThisCookie?
No. It is an independent Manifest V3 implementation written from scratch, licensed GPL-3.0. It reads EditThisCookie's export format so that migrating is painless, but shares no code with it.
Does Bokal cost money?
The cookie manager is free: full create/read/update/delete including HttpOnly cookies, search, import and export, protect/pin/block rules, whitelist cleanup, a CHIPS partitioned-cookie inspector and a DevTools panel. One optional paid feature, Bokal Pro, adds named local cookie profiles for $4.99/month, $19.99/year or $29.99 one-time.
What about Cookie-Editor?
Cookie-Editor is the other major option and it is a good tool — free, GPL-3.0, around 2 million users. We wrote an honest comparison covering exactly what does and does not differ: Bokal vs Cookie-Editor.
Try Bokal
Free and open source (GPL-3.0). No account, no telemetry, no install-time site access.