An AI-powered Chrome side panel assistant that understands natural language and performs real actions in your browser.
- Automates the web: clicks, navigates, opens tabs, and interacts with pages
- Understands pages: takes and analyzes screenshots for context
- Conversational UI: chat to get tasks done, with actionable option prompts
Press ⌘ + . or Ctrl + . to open the side panel.
"Book me the cheapest flight to Tokyo for next week."
"Solve this test for me."
"Complete this DuoLingo level."
"I'm hungry, order me something healthy."
- Prereqs: Bun v1+, Chrome.
- Install:
bun install- Develop (watch + rebuild):
bun run devThen in Chrome: chrome://extensions → enable Developer mode → Load unpacked → select the dist/ folder.
4. Production build (creates zip):
bun run buildThis outputs dist/ and chrome_extension.zip.
- Click the extension icon to open the side panel.
- Open Settings (gear) → paste your Anthropic API key (Claude).
- The key is stored locally via
chrome.storage.localand used directly in the browser.
- MV3: a service worker exposes
/api/chatand streams responses via Vercel AI SDK to Anthropic Claude. - Tools: screenshot, click by coordinates, open tabs, navigate, and interact with elements.
- UI: React + Tailwind in the side panel (
ChatInterface). A content script runs atdocument_startfor page access.
sidePanel,storage, andhost_permissions: <all_urls>to automate across sites.
- Chrome Extensions MV3, React 18, Tailwind, Vercel AI SDK, Anthropic, Bun.

