EditThisCookie was the default cookie editor for a decade. Then Manifest V3 landed, Chrome retired the old Manifest V2 platform, and editors that weren't rebuilt for MV3 quietly stopped working. If you're searching for a replacement in 2026, the field is smaller than it looks — a lot of "cookie editor" results are still MV2 extensions that will break (or already have).
Instead of just handing you a link, here's the checklist I'd use to pick one, and where I landed.
What a 2026 cookie editor actually needs
1. MV3-native. This is non-negotiable. If an extension still relies on persistent background pages, it's living on borrowed time. Check that it's been updated recently and describes itself as Manifest V3.
2. Fast inline editing. The whole point of a dedicated editor over DevTools is speed: see every cookie for the current tab, click one, change the value/expiry/flags, done — no digging through nested panels.
3. Import / export. JSON for tooling, Netscape cookies.txt for curl/yt-dlp and other scripts. If you move sessions between environments, this is the feature you'll use most.
4. Sane defaults, minimal permissions. A cookie editor needs the chrome.cookies API and host access to do its job — but it shouldn't ask for more than that. Fewer permissions, smaller attack surface.
5. Honest about browser limits. No tool can edit HttpOnly cookies — that's a browser security rule, not a feature gap. Be suspicious of anything that claims otherwise.
The baseline: Chrome DevTools (no install)
Before installing anything, know that DevTools has a built-in editor:
- Right-click the page → Inspect
- Application tab → Storage → Cookies
- Select the domain, double-click a row to edit
It's always there and it's trustworthy. But it's slow for repeated use: no quick filtering by cookie type, no one-click export, and every edit is several clicks deep in a small panel. Fine for a one-off; painful for a testing loop.
Where I landed: CookieJar
CookieJar is a free, Manifest V3 cookie editor built as a direct alternative to EditThisCookie. Against the checklist:
| Criterion | CookieJar |
|---|---|
| MV3-native | ✅ Built for current Chrome |
| Inline editing | Click the toolbar icon → click a cookie → edit value/expiry/flags, applies immediately |
| Auto-labeling | Cookies grouped by domain and tagged (Login / Tracking / Analytics / Functional) |
| Import / export | JSON and Netscape (cookies.txt) |
| Delete single cookie | One click |
HttpOnly |
Viewable and deletable, not editable — same browser rule as every tool |
Everything above is free. CookieJar Pro ($4.99/month, or $29.99 one-time) adds automatic cookie-cleanup rules, saved cookie profiles, and a storage manager — useful if you're constantly resetting state across projects.
Honest scope: CookieJar focuses on editing, organizing, and moving cookies. It's not a network-request tool — if you need to rewrite response headers, that's a different category of extension. For the core "I need EditThisCookie back" job, though, it covers the workflow.
Why the checklist matters for testing
- Auth flows — flip session state without creating throwaway accounts
- New vs. returning user — clear specific cookies while keeping the rest
- Login loops — nuke a stale session cookie in two clicks
-
Flag verification — confirm
Secure/HttpOnly/SameSiteat a glance
Install
CookieJar is free and needs no CookieJar account. Your cookies and saved profiles stay in local browser storage — CookieJar never uploads them.
→ Install free: https://dev-tools-hub.xyz/extensions/cookiejar/?utm_source=dev.to&utm_medium=referral&utm_campaign=editthiscookie-replacement-2026
Chrome Web Store: https://chromewebstore.google.com/detail/cookiejar/lhngfkchfepfjjdfhimconagoejemofg
What was the one EditThisCookie feature you can't work without — inline editing, export, or the auto-grouping?
Built by S-Hub — minimal, MV3-native Chrome extensions.
Top comments (0)