CookieVault Guardian

TL;DR: CookieVault Guardian is a free, MIT-licensed Manifest V3 extension that automatically deletes cookies, localStorage, sessionStorage, IndexedDB, Cache Storage, and Service Worker registrations when you close the last tab on a domain — except for whitelisted sites. Built as the modern replacement for Cookie AutoDelete after Chrome’s MV2 sunset disabled the original in late 2024.

CookieVault Guardian is a Manifest V3 browser extension that automatically cleans browser storage for a domain the moment its last tab closes. It is the modern, Manifest V3-native successor to Cookie AutoDelete1, the privacy extension Chrome disabled in late 2024 as the Manifest V2 sunset reached its final phase2. Guardian rebuilds the per-tab cleanup workflow on the current Chrome extension APIs and extends the cleanup target list from “cookies only” to every browser-storage surface that can hold cross-session tracking state.

What Guardian does

In short: Guardian listens for chrome.tabs.onRemoved, checks if any tab is still open on the closing tab’s domain, and if not, deletes every storage API entry for that domain — unless the domain is whitelisted. Six storage targets, each individually toggleable. The whitelist supports per-domain rules, subdomain inheritance, and wildcard patterns.

Six storage surfaces Guardian cleans:

  1. Cookies — every cookie for the domain, including HttpOnly cookies the page itself cannot reach
  2. localStorage — long-term key-value storage that survives across sessions and is invisible to cookie-only cleaners
  3. sessionStorage — per-tab storage; cleaned defensively even though it normally clears with the tab
  4. IndexedDB — structured per-origin database; often where trackers stash fingerprint state
  5. Cache Storage — Service Worker cache API; can be used as a tracking side channel
  6. Service Worker registrations — long-lived background scripts that can wake up to re-set cookies

Each surface has its own on/off toggle in settings. Defaults are sensible — all six on except in cases where a critical site breaks (rare).

A 2024 Mozilla blog on Total Cookie Protection3 frames the rationale: “Cookies are no longer the only mechanism for cross-site tracking, and a privacy tool that only cleans cookies misses the modern threat model.” Guardian’s six-surface scope is the operational response.

The whitelist (the most important feature)

In short: The whitelist is the difference between Guardian being useful and Guardian being annoying. Add every site you want to stay logged in to; everything else cleans on tab close. Subdomain inheritance and wildcards make the whitelist short and stable.

The whitelist UX is the modern reimplementation of Cookie AutoDelete’s classic flow:

A starter whitelist that covers most users in the first five minutes:

Everything else cleans on tab close by default.

Browser support

In short: Every modern Chromium browser uses the Chrome Web Store build. Firefox uses a separate Manifest V3 build. Safari is not supported (Safari Web Extensions have a different cleanup model).

BrowserSourceCookie AutoDelete also works?
ChromeChrome Web StoreNo (Chrome MV2 sunset)
EdgeEdge Add-onsNo (same Chromium policy)
BraveChrome Web StoreNo
OperaChrome Web StoreNo
VivaldiChrome Web StoreNo
ArcChrome Web StoreNo
FirefoxFirefox Add-onsYes (Firefox kept MV2 support)
SafariNot supportedN/A

If you only use Firefox and Cookie AutoDelete works for you, the urgent migration argument is weaker — Guardian’s Firefox draw is the cross-browser whitelist sync, not “your current setup is broken.”

How Guardian compares

FeatureCookieVault GuardianCookie AutoDelete
Manifest versionV3V2 (deprecated)
Chrome / Edge / BraveYesNo (disabled)
FirefoxYesYes
Cleans cookiesYesYes
Cleans localStorageYesPartial (later versions)
Cleans IndexedDBYesNo
Cleans Cache StorageYesNo
Cleans Service WorkerYesNo
Whitelist / greylistYesYes
Wildcard patternsYesYes
Cross-device whitelist syncYes (Pro)No
Active maintenanceYesSlowed

Detailed page: CookieVault Guardian vs Cookie AutoDelete.

Pricing

In short: Free forever for local cleanup. $4/month or $36/year Pro for cross-device whitelist sync. Same pricing line as CookieVault Editor — they share an account when you have both.

Pro is only worth the money if you use Guardian on more than one device.

How to install

  1. Chrome Web Store — search “CookieVault Guardian” → “Add to Chrome”
  2. Edge Add-ons — same Chromium build, Microsoft store
  3. Firefox Add-ons — separate Manifest V3 build
  4. Direct CRX for Opera / Vivaldi / Arc / Brave — GitHub release page, drag into extensions page
  5. Build from source — clone the repo, npm install && npm run build, load unpacked

After installing:

  1. Pin the toolbar icon for one-click whitelist access
  2. Visit each site you want to stay logged in to
  3. Click the Guardian icon → “Add to whitelist”
  4. Verify the whitelist in Settings → Whitelist
  5. Browse normally — non-whitelisted tab closes trigger cleanup

See the auto-delete tab close how-to for the full setup walkthrough with edge cases.

See also


Footnotes

  1. The Cookie AutoDelete source code is at https://github.com/Cookie-AutoDelete/Cookie-AutoDelete under the MIT license. The Firefox Add-ons listing remains functional; the Chrome Web Store listing was disabled with the MV2 sunset.

  2. Chrome’s Manifest V2 deprecation timeline is documented at https://developer.chrome.com/docs/extensions/develop/migrate and the stable-channel disablement schedule at https://developer.chrome.com/blog/resuming-the-transition-to-mv3.

  3. Mozilla’s Total Cookie Protection announcement and technical writeup is at https://developer.mozilla.org/en-US/docs/Web/Privacy. The “cookies are no longer the only mechanism” framing is paraphrased from Mozilla’s published privacy stance.