A lightweight browser extension for inspecting and exporting cookies — including HttpOnly and Secure cookies that are normally hidden from JavaScript.
- Full cookie access — reads all cookies for the active tab, including
HttpOnlyandSecureflags - Filter by type — quickly switch between All, HttpOnly, Secure, or Both flags
- Live stats — at-a-glance badges showing cookie counts per category
- Export to JSON — download cookies as a timestamped
.jsonfile - Copy to clipboard — one-click copy of the current filtered view
- Clean dark UI — readable monospace preview with smooth toast notifications
| Browser | Supported | Minimum Version | Notes |
|---|---|---|---|
| Chrome | ✅ | 125 | Primary target, uses Manifest V3 |
| Firefox | ✅ | 109 | Uses browser.* API with MV2 manifest |
| Permission | Reason |
|---|---|
cookies |
Read all cookies including HttpOnly and Secure |
activeTab |
Detect the current tab's URL |
tabs |
Query the active tab |
<all_urls> |
Access cookies across all domains |
Cookies are exported as a JSON array. Each entry includes:
{
"name": "session_id",
"value": "abc123",
"domain": "example.com",
"path": "/",
"secure": true,
"httpOnly": true,
"sameSite": "strict",
"expirationDate": 1735689600,
"hostOnly": false,
"session": false,
"storeId": "0"
}- Navigate to any website
- Click the extension icon in the toolbar
- Use the filter buttons to narrow down cookies by type
- Click Download JSON to save, or Copy to paste elsewhere
- This extension is intended for development and debugging purposes only
- Cookie values may contain sensitive session tokens — handle exported files with care
MIT