See everything your browser stores. Search, edit, analyze, export.
Unified cookie & storage inspector with privacy scoring.
| Feature | Description |
|---|---|
| Unified View | Cookies, localStorage, sessionStorage, IndexedDB, and Cache Storage — all in one panel |
| Search & Filter | Search across ALL storage types by key, value, or domain |
| CRUD Operations | Create, read, update, delete any storage entry |
| Cookie Classification | Auto-classify cookies as Essential / Functional / Analytics / Tracking |
| Privacy Score | Per-site privacy score (0–100) based on cookie/tracker analysis |
| Snapshot Diff | Take snapshots before & after actions, see exactly what changed |
| Export / Import | Export all storage as JSON for debugging or sharing |
| Quick Popup | Glanceable summary with one-click export and clear-all |
| DevTools Panel | Full-featured inspector integrated into Chrome/Firefox DevTools |
# Clone
git clone https://github.com/user/cookie-monster.git
cd cookie-monster
# Install dependencies
pnpm install
# Development build with hot reload
pnpm devThen load in Chrome:
- Navigate to
chrome://extensions - Enable Developer mode
- Click Load unpacked
- Select the
dist/folder
- Chrome Web Store: Coming soon
- Firefox Add-ons: Coming soon Note: Use github release for installing extensions/addons for now.
| Feature | Cookie Sentinel | EditThisCookie | DevTools Built-in |
|---|---|---|---|
| Manifest V3 | ✅ | ❌ (MV2) | N/A |
| Unified storage view | ✅ | ❌ | ❌ (separate tabs) |
| Cookie classification | ✅ | ❌ | ❌ |
| Privacy score | ✅ | ❌ | ❌ |
| Snapshot diff | ✅ | ❌ | ❌ |
| IndexedDB browser | ✅ | ❌ | ✅ |
| Cache Storage browser | ✅ | ❌ | ✅ |
| Export/Import | ✅ | ✅ | ❌ |
| Search all types | ✅ | ❌ | Partial |
| Sensitive value masking | ✅ | ❌ | ❌ |
| Open source | ✅ | ✅ | N/A |
- Open DevTools (
F12orCmd+Opt+I) - Navigate to the Cookie Sentinel tab
- Browse all storage entries in the unified view
- Use the search bar to filter by key, value, or domain
- Click any entry to see full details (value, metadata, classification)
Click the extension icon in the toolbar for a quick summary:
- Privacy score at a glance
- Storage counts per type
- One-click export and clear-all
Cookie Sentinel rates each site from 0 to 100:
| Score | Rating | Meaning |
|---|---|---|
| 80–100 | 🟢 Excellent | Minimal tracking, mostly essential cookies |
| 60–79 | 🟡 Good | Some analytics, limited tracking |
| 40–59 | 🟠 Fair | Multiple trackers or third-party cookies |
| 0–39 | 🔴 Poor | Heavy tracking, many third-party cookies |
Classification uses a bundled rules database — no external requests are made.
- Node.js >= 18
- pnpm >= 9
- Sensitive cookie values (session, token, auth, CSRF) are masked by default
- HttpOnly cookies read via
chrome.cookiesAPI, never via injected scripts - All values rendered as
textContentto prevent XSS - Export warns about potentially sensitive data
- Classification database is bundled — zero external network requests
- Extension collects no telemetry or analytics whatsoever
See CONTRIBUTING.md for guidelines.
MIT — Use it, fork it, ship it.

