Installation 
Bootstrap a new project, start from scratch, or migrate an existing project.
Bootstrap Project 
Run the init command, and follow the instructions.
sh
pnpm dlx wxt@latest initsh
bunx wxt@latest initsh
npx wxt@latest initsh
# Use NPM initially, but select Yarn when prompted
npx wxt@latest initStarter Templates:
All templates use TypeScript by default. To use JavaScript, change the file extensions.
Demo 

Once you've run the dev command, continue to Next Steps!
From Scratch 
- Create a new project sh- cd my-project pnpm initsh- cd my-project bun initsh- cd my-project npm initsh- cd my-project yarn init
- Install WXT: sh- pnpm i -D wxtsh- bun i -D wxtsh- npm i -D wxtsh- yarn add --dev wxt
- Add an entrypoint, - my-project/entrypoints/background.ts:ts- export default defineBackground(() => { console.log('Hello world!'); });
- Add scripts to your - package.json:json- { "scripts": { "dev": "wxt", "dev:firefox": "wxt -b firefox", "build": "wxt build", "build:firefox": "wxt build -b firefox", "zip": "wxt zip", "zip:firefox": "wxt zip -b firefox", "postinstall": "wxt prepare" } }
- Run your extension in dev mode sh- pnpm devsh- bun run devsh- npm run devsh- yarn dev- WXT will automatically open a browser window with your extension installed. 
Next Steps 
- Keep reading on about WXT's Project Structure and other essential concepts to learn
- Configure automatic browser startup during dev mode
- Explore WXT's example library to see how to use specific APIs or perform common tasks
- Checkout the community page for a list of resources made by the community!
 Solid
Solid