Overview
AmbientMeta Privacy Guard is a Chrome extension that automatically detects PII as you type into LLM chat interfaces. It works on: The extension highlights detected entities inline and lets you sanitize text with one click before sending it to the LLM.How It Works
- Real-time scanning — As you type in a chat input, the extension calls the AmbientMeta API to detect PII entities in your text.
- Inline highlighting — Detected entities (names, emails, phone numbers, etc.) are highlighted directly in the input field.
- One-click sanitize — Click the sanitize button to replace all detected PII with safe placeholders before sending your message.
POST /v1/sanitize), so detection quality is identical to the API and every scan feeds the learning flywheel.
Authentication
The extension supports two modes:Signed Out (Free)
- Uses a shared extension key
- Limited to 50 sanitizations per day (detection/highlighting is unlimited)
- No account required
Signed In (Google)
- Sign in with Google via the extension popup
- The extension authenticates using
POST /v1/auth/google-extension - An API key is automatically provisioned for your account
- Unlimited sanitizations on paid plans
Daily Limits
Detection calls (for inline highlighting) do not count toward the daily limit. Only full sanitization requests are counted.
Configuration
The extension scans for these entity types by default:PERSON— NamesEMAIL_ADDRESS— Email addressesPHONE_NUMBER— Phone numbersSSN— Social Security NumbersCREDIT_CARD— Credit card numbersLOCATION— Places and citiesADDRESS— Physical addresses
Technical Details
- Manifest V3 Chrome extension
- Detection debounced at 1.5 seconds after typing stops
- Minimum 10 characters before scanning triggers
- All API calls go through the background service worker
- Credentials stored in
chrome.storage.local
Installation
The extension is available from the Chrome Web Store. After installing:- Click the AmbientMeta icon in your toolbar
- (Optional) Sign in with Google for higher limits
- Navigate to ChatGPT, Claude, or Gemini
- Start typing — PII will be highlighted automatically

