Web Extension starter to build "Write Once Run on Any Browser" extension
πββοΈ Made by @abhijithvijayan
β€οΈ it? βοΈ it on GitHub or Tweet about it.
- Cross Browser Support (Web-Extensions API)
- Browser Tailored Manifest generation
- Vite for fast builds and HMR
- Automatic build on code changes
- Auto packs browser specific build files
- SASS/SCSS styling with CSS Modules
- TypeScript by default
- ES6 modules support
- React 19 with automatic JSX runtime
- ESLint 9 flat config with Prettier
- Bundler: Vite 7
- UI: React 19
- Language: TypeScript 5.9
- Styling: SCSS with CSS Modules
- Linting: ESLint 9 (flat config) + Prettier
- Manifest: vite-plugin-wext-manifest
This starter uses Manifest V3 for all browsers.
![]() |
![]() |
![]() |
![]() |
![]() |
|---|---|---|---|---|
| 88+ (Jan 2021) | 109+ (Jan 2023) | 74+ (Chromium-based) | 88+ (Chromium-based) | Latest (Chromium-based) |
Note: Firefox 109+ is required for Manifest V3 support with ES modules in background scripts.
Need to support older Firefox versions? See Firefox MV2 Guide for using Manifest V2 with Firefox.
Create a new directory and run
curl -fsSL https://github.com/abhijithvijayan/web-extension-starter/archive/react-typescript-vite.tar.gz | tar -xz --strip-components=1
Ensure you have Node.js 20 or later installed.
Then run the following:
# Install dependencies
npm install
# Start development server
npm run dev:chrome # For Chrome
npm run dev:firefox # For Firefox
# Build for production
npm run build:chrome # Build Chrome extension
npm run build:firefox # Build Firefox addon
npm run build # Build for all browserssource/
βββ Background/ # Service worker (Chrome MV3) / Background script (Firefox)
βββ ContentScript/ # Content scripts (injected into web pages)
βββ Popup/ # Extension popup UI
βββ Options/ # Options page UI
βββ components/ # Shared React components
βββ styles/ # Global styles and variables
βββ types/ # TypeScript type definitions
βββ utils/ # Utility functions
βββ public/ # Static assets (icons, etc.)
βββ manifest.json # Extension manifest template
- Navigate to
chrome://extensions - Enable "Developer mode"
- Click "Load unpacked"
- Select
extension/chromedirectory
- Navigate to
about:debugging - Click "This Firefox"
- Click "Load Temporary Add-on"
- Select
extension/firefox/manifest.json
Content scripts are automatically bundled as IIFE (Immediately Invoked Function Expression) to ensure compatibility with the browser's content script execution environment, which doesn't support ES modules.
The manifest uses vendor prefixes to generate browser-specific configurations:
{
"__chrome__name": "My Chrome Extension",
"__firefox__name": "My Firefox Addon",
"__chrome|firefox__description": "Works on both!"
}See vite-plugin-wext-manifest for more details.
| Script | Description |
|---|---|
npm run dev:chrome |
Start dev server for Chrome |
npm run dev:firefox |
Start dev server for Firefox |
npm run build:chrome |
Build production Chrome extension |
npm run build:firefox |
Build production Firefox addon |
npm run build |
Build for all browsers |
npm run lint |
Run ESLint |
npm run lint:fix |
Run ESLint with auto-fix |
- Shared ESLint & Prettier Configuration -
@abhijithvijayan/eslint-config - Shared TypeScript Configuration -
@abhijithvijayan/tsconfig
Please file an issue here for bugs, missing documentation, or unexpected behavior.
MIT Β© Abhijith Vijayan




