install to add a managed browser runtime into the Extension.js cache.
This is most useful when you want a consistent browser binary for dev, build, start, or preview. It supports Chrome for Testing, Chromium, Firefox, and Edge.
When to use install
- You need a consistent, repeatable browser binary for continuous integration (CI), automation, or team-consistent local runs.
- You want Chrome for Testing instead of relying on whatever Chrome version your system has installed.
- You are setting up cross-browser testing with managed Firefox or Edge runtimes.
Why Extension.js downloads a browser
The run commands prefer a managed browser runtime over the browser that you use every day.- The managed binary is version-pinned.
dev, CI runs, and teammates all launch the same build. - Chrome for Testing is built for automation. Recent branded Chrome builds (150+) can drop the
--load-extensionswitch that loads your extension. - The managed runtime runs in an isolated profile. It never touches your personal browser, its profile, or its settings.
install up front. When no usable binary exists for the requested target, the run commands print the exact install command.
Skip the managed download
You can develop against a browser that is already installed, with no download:- Run a fork by name:
extension dev --browser=bravelocates the installed Brave for you. See Running other browsers. - Pin any binary: pass
--chromium-binary <path>or--gecko-binary <path>todev,start, orpreview. The pin overrides every locator. - Requested
edgelaunches the Edge that is installed on your system when no managed Edge exists. - Requested
chromerefuses a branded system Chrome and asks for Chrome for Testing instead. - To run branded Chrome anyway, pin it with
--chromium-binary.
When Edge is already installed
--browser=edge finds the system Edge on its own, so you can skip extension install edge. Run extension install edge only when you want a pinned managed copy for automation.
On Linux, the managed Edge download needs an interactive session with sudo rights. When that download fails and a system Edge exists, the installer reports the system binary and succeeds with it.
Canonical usage
For a single browser, use the positional form:--browser only when you need multiple targets, browser families, or all.
Install command capabilities
Usage
Arguments and flags
What all means here
extension install --browser all installs chrome, chromium, edge, and firefox. This differs from --browser all on the run commands, which expands to chrome, edge, and firefox only. The install set also covers Chromium because it is the default launch target for dev and start.
Machine output with --output json
--output json prints one schema-1 envelope on stdout:
- A successful install prints a
status: "installed"frame with the installed browsers invalue.browsers. --whereprints astatus: "located"frame with the resolved paths invalue.paths.- A failed download prints
ok: falsewitherror.code: "E_BROWSER_DOWNLOAD"before the process exits1.
Examples
Install Chrome for Testing
Install multiple targets in one command
Show the managed install path for Chrome
Cache locations
By default, Extension.js stores managed browsers in a stable per-user cache:- macOS:
~/Library/Caches/extension.js/browsers - Linux:
~/.cache/extension.js/browsersor$XDG_CACHE_HOME/extension.js/browsers - Windows:
%LOCALAPPDATA%\extension.js\browsers
EXT_BROWSERS_CACHE_DIR.
What the cache holds
Each browser gets its own folder under the cache root, but the layout inside differs by download engine:chrome,chromium, andfirefoxcome from@puppeteer/browsers. Expect its nested platform and version folders inside each browser directory.edgecomes fromplaywright install msedge, which lays the binary out in its own structure.safarihas no download. Safari ships with macOS and needs the full Xcode app for builds, soextension install safarirefuses with an explanation.- Named forks such as Brave are never downloaded. Point at them with
--chromium-binaryor--gecko-binaryinstead.
--where instead of hardcoding paths, because the nested layout can change with the download engines.
Project-local binaries
SetEXTENSIONJS_BINARIES_IN_DIST=1 to make the run commands resolve managed binaries under dist/extension-js/binaries inside the project instead of the shared per-user cache. This suits sandboxed or fully self-contained project setups.
Best practices
- Use
installin CI to pin a consistent browser binary instead of relying on whatever the runner provides. - Prefer
chromeoverchromiumfor Chrome for Testing: it matches stable Chrome behavior more closely. - Use
--whereto verify cache paths before scripting automation around managed browsers. installonly manages browsers inside the Extension.js cache. It does not modify system browser installs.
Behavior notes
chromeinstalls Chrome for Testing rather than relying on the system Google Chrome app.edgemay require a privileged interactive session on Linux.
Next steps
- Remove managed browsers with
uninstall. - Use managed browsers with
devandstart. - Learn about Running other browsers with custom binary paths.

