Adds a toolbar popup whose text follows your browser's language.
npx extension@latest create my-action-locales --template action-locales
cd my-action-locales
npm install
npm run dev!Powered by Extension.js
Adds a toolbar popup whose text follows your browser's language.
What you'll see: A toolbar popup that opens when you click the extension's icon.
How it works: The manifest registers an action and points default_popup at a JavaScript page bundled from src/action/.
Demonstrates the _locales/ directory and chrome.i18n.* APIs. The popup pulls strings from the user's active locale; add another _locales/<lang>/messages.json to localize.
npx extension@latest create my-action-locales --template action-locales
cd my-action-locales
npm install
npm run devA fresh browser window opens with the extension already loaded.
src/
├── action/
│ ├── index.html
│ ├── scripts.js
│ └── styles.css
├── images/
│ └── icon.png
├── background.js
└── manifest.jsonCloned 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.
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=firefoxBuild for production:
npx extension@latest build . # Chromium (default)
npx extension@latest build . --browser=firefox
npx extension@latest build . --browser=edgePreview the production build with the bundled browser:
npx extension@latest preview .This template ships an end-to-end check (template.spec.ts) validated by the examples-repo CI on every commit.