Claude AI Sidebar

Adds a sidebar panel where you can chat with Claude about the page you are viewing.

Runs on Chrome, Edge, Firefox · Manifest V3 · Surfaces: sidebar, content script, popup, background service worker · Styling: CSS · Level: beginner · Framework: react

Create this project

npx extension@latest create my-ai-claude --template ai-claude
cd my-ai-claude
npm install
npm run dev

!Powered by Extension.js

AI Sidebar (Claude / Anthropic) Example

Adds a sidebar panel where you can chat with Claude about the page you are viewing.

What you'll see: A small React UI injected into any web page, isolated in a Shadow DOM so site styles don't bleed through.

How it works: A content script mounts a React + TypeScript UI inside a Shadow DOM and applies scoped styles so the host page can't bleed through. Styles flow through Tailwind + PostCSS. UI is composed with Radix / shadcn primitives, lucide-react.

Conversational sidebar wired to the Anthropic SDK. Paste a key the first time you open the panel (it lives in chrome.storage.local and never leaves the device) and chat with Claude inline next to whatever page you're on. Shares its layout and shadcn/ui primitives with the ai-chatgpt, ai-gemini, and ai-perplexity siblings; only the SDK and brand accent change.

Try it locally

npx extension@latest create my-ai-claude --template ai-claude
cd my-ai-claude
npm install
npm run dev

A fresh browser window opens with the extension already loaded.

Project layout

src/
├── components/
│   ├── ui/
│   │   ├── button.tsx
│   │   ├── card.tsx
│   │   └── scroll-area.tsx
│   ├── ApiKeyForm.tsx
│   ├── ChatInput.tsx
│   └── ChatMessage.tsx
├── content/
│   ├── ContentApp.ts
│   ├── scripts.ts
│   └── styles.css
├── images/
│   └── icon.png
├── lib/
│   ├── client.ts
│   ├── page-context.ts
│   └── utils.ts
├── sidebar/
│   ├── index.html
│   ├── scripts.tsx
│   ├── SidebarApp.tsx
│   └── styles.css
├── background.ts
└── manifest.json

Commands

Cloned this repo instead? The examples ship without npm scripts, so run Extension.js directly from the example directory. Run npm install first when the example declares dependencies.

dev

Run the extension in development mode. Target a browser with --browser:

npx extension@latest dev .                  # Chromium (default)
npx extension@latest dev . --browser=chrome
npx extension@latest dev . --browser=edge
npx extension@latest dev . --browser=firefox

build

Build for production:

npx extension@latest build .                # Chromium (default)
npx extension@latest build . --browser=firefox
npx extension@latest build . --browser=edge

preview

Preview the production build with the bundled browser:

npx extension@latest preview .

Tests

This template ships an end-to-end check (template.spec.ts) validated by the examples-repo CI on every commit.

Learn more

extension.devDocumentation for extension.dev