Time
Method
Host
Path
Status
ms
Select a request to inspect
ENV Vars (stored in extension, never exposed to pages)
Tip: You can add any ENV vars, not only the built-ins.
Allowed Page Origins (who can call franzai.fetch)
Allowed Destinations (where requests may go)
Advanced: Custom Injection Rules
For power users. Add custom header/query injection for non-standard APIs.
⚠️ Reset All Settings
What this does:
- Deletes ALL your API keys (OpenAI, Anthropic, Google, Mistral, custom)
- Resets allowed origins to default (
*= all sites) - Resets allowed destinations to default (
*= all APIs) - Removes all custom injection rules
When to use:
- Extension is behaving unexpectedly
- You want to start fresh with clean configuration
- You're switching to a different set of API keys
This action cannot be undone. Your API keys will be permanently deleted from this extension.
Custom Injection Rules
What are injection rules?
When you make a request through FranzAI Bridge to a matching host, the extension automatically injects headers or query parameters. This is how API keys get added to your requests.
Built-in rules (automatic):
api.openai.com→ Authorization: Bearer ${OPENAI_API_KEY}api.anthropic.com→ x-api-key: ${ANTHROPIC_API_KEY}generativelanguage.googleapis.com→ x-goog-api-key: ${GOOGLE_API_KEY}api.mistral.ai→ Authorization: Bearer ${MISTRAL_API_KEY}
When to add custom rules:
- Using an API not listed above
- Need to inject custom headers (e.g., X-Custom-Header)
- Need to inject query parameters (e.g., ?api_key=xxx)
How to use:
- First add your API key as an ENV var (e.g., MY_CUSTOM_KEY)
- Set the host pattern (e.g.,
api.custom.comor*.custom.com) - Add headers JSON like:
{ "X-API-Key": "${MY_CUSTOM_KEY}" } - Or add query JSON like:
{ "key": "${MY_CUSTOM_KEY}" }