Save and search your Open Brain second brain directly from your browser.
- Save thoughts from any webpage (text + source URL auto-attached)
- Semantic search across all your thoughts (browser, Telegram, Slack, Claude)
- Auto-Capture — select text on a page, open the extension, it's pre-filled
- Right-click menu — save or search selected text without opening the popup
- Omnibox — type
brain <query>in the address bar for instant search - Related thoughts — after saving, see similar thoughts you captured before
- Source filter — filter search results by source (browser, Telegram, Slack, Claude)
- Click to copy — click any result to copy it to clipboard
- Delete thoughts — remove thoughts directly from search results
- Keyboard shortcut —
Ctrl+Shift+B(orCmd+Shift+Bon Mac) to open
Option A — Git clone:
git clone https://github.com/konepone/open_brain_feature.gitOption B — Download ZIP:
- Click the green Code button at the top of this page
- Click Download ZIP
- Unzip the folder somewhere on your computer
- Open chrome://extensions/ in your browser
- Enable Developer mode (toggle in the top right)
- Click Load unpacked
- Navigate to the
chrome-extension/folder inside the downloaded repo and select it - The Open Brain icon should now appear in your toolbar
You need a running Open Brain Supabase project with:
- The
thoughtstable andmatch_thoughtsfunction - An OpenRouter API key (for embeddings + metadata extraction)
Deploy the brain-api Edge Function (included in supabase-function/):
# Set your secrets (one-time)
supabase secrets set OPENROUTER_API_KEY=your-openrouter-key --project-ref YOUR_PROJECT_REF
supabase secrets set BRAIN_API_KEY=$(openssl rand -hex 16) --project-ref YOUR_PROJECT_REF
# Deploy
supabase functions deploy brain-api --project-ref YOUR_PROJECT_REF --no-verify-jwtNote down the BRAIN_API_KEY you generated — you'll need it in step 4.
- Click the Open Brain icon in your toolbar (or press
Ctrl+Shift+B) - The settings panel opens automatically on first use
- Enter:
- API URL:
https://YOUR_PROJECT_REF.supabase.co/functions/v1/brain-api - API Key: the
BRAIN_API_KEYyou generated above
- API URL:
- Click Speichern (Save)
- Save: Type a thought and press
Ctrl+Enteror click "Speichern" - Search: Type a query in the search field and press Enter
- Right-click: Select text on any page → right-click → "Im Brain speichern" or "Im Brain suchen"
- Omnibox: Type
brainin the address bar, press Tab, then type your query
- Chrome Extension Manifest V3
- Supabase Edge Functions (Deno)
- pgvector for semantic search
- OpenRouter API (text-embedding-3-small + gpt-4o-mini)
MIT