Open source

TL;DR: CookieVault is MIT-licensed open source. The Editor extension, Guardian extension, sync server, and this website all live on GitHub with reproducible builds, so you can verify the store binary against a tagged commit. Contributions, audits, and forks are welcome.

CookieVault is an open-source project: every component — the Editor and Guardian extensions, the end-to-end encrypted sync server, and this marketing site — is published on GitHub under the MIT license. The extension binaries on the Chrome Web Store are reproducible-built from tagged GitHub releases, which means the code you can read is provably the code that runs. This is the structural answer to the trust problem that took down EditThisCookie.

What is published

In short: Everything. There is no closed core. The cryptographic boundary that protects your cookies is fully auditable.

RepositoryWhat it containsLicense
EditorThe cookie manager extensionMIT
GuardianThe auto-delete extensionMIT
SyncThe end-to-end encrypted sync serverMIT
WebThis marketing site (Astro)MIT
DocsTechnical documentationMIT

Why open source matters here

In short: A cookie extension has privileged access to your session tokens. Open source plus reproducible builds turns “trust us” into “verify us” — the only honest posture for a tool with that much access.

Three reasons transparency is non-negotiable for this category:

Reproducible builds

In short: Each Chrome Web Store release is tagged in Git, and the store binary is byte-identical to the CI artifact for that tag. Verify with a SHA-256 comparison.

The verification flow is four steps:

  1. Note the version of the extension you have installed (or want to verify)
  2. Find the matching tagged release on GitHub and download its SHA256SUMS
  3. Download the CRX (from the store or the release) and run sha256sum on it
  4. Compare the two checksums — a match proves the binary is the published source

This procedure means you never have to take our word for what the extension does; the math does the trusting.

How to contribute

In short: Read CONTRIBUTING.md, discuss before large PRs, sign commits, use Conventional Commits. No CLA required.

License

MIT, everywhere. No CLA, no relicensing of contributions, no proprietary fork. You may read, fork, modify, self-host, and redistribute under the MIT terms.

See also