Loading...
Loading...
Apply modern browser extension toolchain patterns: WXT (default), Plasmo, CRXJS for Chrome/Firefox/Safari extensions. Use when building browser extensions, choosing extension frameworks, or discussing manifest v3 patterns.
npx skill4agent add phrazzld/claude-config extension-toolchain# Create new extension
npm create wxt@latest
# Choose your framework
? Select a template:
> vanilla
react
vue
svelte
solid
# Start development
cd my-extension
npm run dev # Chrome (default)
npm run dev:firefox # Firefox
npm run dev:edge # Edge
npm run dev:safari # Safari (experimental)# Create Plasmo extension
npm create plasmo
# Start development
npm run dev# Add to existing Vite project
npm install @crxjs/vite-plugin -D| WXT | Plasmo | CRXJS | |
|---|---|---|---|
| Frameworks | All | React-focused | All |
| Setup | Batteries-included | Opinionated | Manual |
| DX | Excellent | Excellent | Great |
| HMR | Yes | Yes | Best |
| Auto-publish | Yes | Yes | No |
| Learning Curve | Low | Low | Medium |
| Flexibility | High | Medium | Highest |
my-extension/
├── entrypoints/
│ ├── background.ts # Service worker
│ ├── content.ts # Content script
│ ├── popup/ # Extension popup
│ │ ├── index.html
│ │ └── main.tsx
│ └── options/ # Options page
│ ├── index.html
│ └── main.tsx
├── components/ # Shared UI components
├── utils/ # Shared utilities
├── public/ # Static assets
│ └── icon.png # Extension icon
├── wxt.config.ts # WXT configuration
└── package.json// wxt.config.ts
import { defineConfig } from 'wxt'
export default defineConfig({
manifest: {
name: 'My Extension',
version: '1.0.0',
permissions: ['storage', 'tabs'],
host_permissions: ['https://*.example.com/*'],
action: {
default_title: 'My Extension',
},
},
})host_permissionspermissionsscriptingexecuteScript// popup/main.tsx
import browser from 'webextension-polyfill'
const response = await browser.runtime.sendMessage({
type: 'GET_DATA',
payload: { key: 'value' },
})
// background.ts
browser.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.type === 'GET_DATA') {
// Process and respond
sendResponse({ data: 'result' })
}
return true // Keep channel open for async response
})// content.ts
import browser from 'webextension-polyfill'
// Send message to background
const result = await browser.runtime.sendMessage({
type: 'ANALYZE_PAGE',
url: window.location.href,
})
// background.ts
browser.runtime.onMessage.addListener(async (message) => {
if (message.type === 'ANALYZE_PAGE') {
const analysis = await analyzePage(message.url)
return { analysis }
}
})// content.ts - inject into page context
const script = document.createElement('script')
script.src = browser.runtime.getURL('injected.js')
document.head.appendChild(script)
// Listen for messages from page
window.addEventListener('message', (event) => {
if (event.source !== window) return
if (event.data.type === 'FROM_PAGE') {
// Handle message from page
}
})
// injected.js (runs in page context, has access to page's window/DOM)
window.postMessage({ type: 'FROM_PAGE', data: 'value' }, '*')// Using chrome.storage.sync (syncs across devices)
import browser from 'webextension-polyfill'
// Save
await browser.storage.sync.set({ key: 'value' })
// Load
const { key } = await browser.storage.sync.get('key')
// Listen for changes
browser.storage.onChanged.addListener((changes, areaName) => {
if (areaName === 'sync' && changes.key) {
console.log('Value changed:', changes.key.newValue)
}
})# Cross-browser compatibility
npm install webextension-polyfill
# State Management
npm install zustand
# Forms
npm install react-hook-form zod
# UI Components (if using React)
npm install @radix-ui/react-* # Headless components# Install testing libraries
npm install --save-dev vitest @testing-library/react @testing-library/user-event
npm install --save-dev @wxt-dev/testing// popup/main.test.tsx
import { render, screen } from '@testing-library/react'
import { describe, it, expect } from 'vitest'
import Popup from './main'
describe('Popup', () => {
it('renders heading', () => {
render(<Popup />)
expect(screen.getByRole('heading')).toBeInTheDocument()
})
})# .github/workflows/extension-ci.yml
name: Extension CI
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm test
- run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: extension-build
path: .output/# Build for all browsers
npm run build # Chrome
npm run build:firefox # Firefox
npm run build:safari # Safari
# Zip for submission
npm run zip # All stores
# Or use WXT's publish command (requires API keys)
wxt publish --chrome --firefox// wxt.config.ts
export default defineConfig({
zip: {
artifactTemplate: '{{name}}-{{version}}-{{browser}}.zip',
},
manifest: {
name: '__MSG_extName__',
description: '__MSG_extDescription__',
default_locale: 'en',
},
})// Content Security Policy
manifest: {
content_security_policy: {
extension_pages: "script-src 'self'; object-src 'self'"
}
}
// Validate messages
browser.runtime.onMessage.addListener((message) => {
// Always validate message structure
if (typeof message !== 'object' || !message.type) {
return
}
// Type guard
if (message.type === 'EXPECTED_TYPE') {
// Process
}
})
// Never inject user content directly into DOM
// Use textContent, not innerHTML
element.textContent = userInput // Safe
element.innerHTML = userInput // XSS vulnerability!chrome.storagepostMessageeval()new Function()New browser extension:
├─ Multi-framework team → WXT ✅
├─ React-only team → Plasmo
└─ Want maximum control → CRXJS
Existing extension (Manifest V2):
└─ Migrate to WXT (handles V2→V3 migration)