Skip to content
Rishap Gandhi edited this page Jun 15, 2026 · 1 revision

FAQ

Does this slow down my page?

Minimal overhead (<1% CPU). The circular buffer is O(1) append with constant memory.

Where is data stored?

Locally in browser.storage.local. Nothing is sent anywhere.

What gets redacted?

Authorization headers, cookies, any JSON field matching: password, token, secret, api_key.

Can I use it on production sites?

Yes, but it's designed for dev/staging. Add URLs to the allowlist in settings.

How big is the buffer?

500 console entries, 200 network entries, 100 errors max. Oldest entries are overwritten.

Why two content scripts?

injected.content.ts runs in MAIN world to patch page globals. content.ts runs in ISOLATED world to safely relay messages to the background.

Clone this wiki locally