extension 3.8.12 → 3.8.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -39
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -137,45 +137,6 @@ npx extension@latest dev --chromium-binary "/Applications/Google Chrome.app/Cont
|
|
|
137
137
|
npx extension@latest dev --gecko-binary "/Applications/Firefox.app/Contents/MacOS/firefox"
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
-
### Managed browser binaries
|
|
141
|
-
|
|
142
|
-
Use Extension.js commands to install/remove managed browser binaries:
|
|
143
|
-
|
|
144
|
-
```bash
|
|
145
|
-
# Install into Extension.js managed cache
|
|
146
|
-
npx extension@latest install --browser=chromium
|
|
147
|
-
npx extension@latest install --browser=firefox
|
|
148
|
-
|
|
149
|
-
# Show managed cache root
|
|
150
|
-
npx extension@latest install --where
|
|
151
|
-
|
|
152
|
-
# Show managed path for a specific browser
|
|
153
|
-
npx extension@latest install --where --browser=firefox
|
|
154
|
-
|
|
155
|
-
# Remove one browser binary
|
|
156
|
-
npx extension@latest uninstall chromium
|
|
157
|
-
|
|
158
|
-
# Remove all managed browser binaries
|
|
159
|
-
npx extension@latest uninstall --all
|
|
160
|
-
|
|
161
|
-
# Show managed cache root
|
|
162
|
-
npx extension@latest uninstall --where
|
|
163
|
-
|
|
164
|
-
# Show managed path(s) for target browser(s)
|
|
165
|
-
npx extension@latest uninstall --where --browser=chromium
|
|
166
|
-
```
|
|
167
|
-
|
|
168
|
-
`uninstall` only removes binaries from the Extension.js managed cache root (or `EXT_BROWSERS_CACHE_DIR` when set). It does not remove browser installations that were installed elsewhere (for example, system browsers or custom paths outside the managed cache).
|
|
169
|
-
|
|
170
|
-
`edge` note for Linux: Playwright channel installs may require a privileged interactive session (`sudo` prompt). If channel install cannot proceed but a system Edge binary is already present, Extension.js will use that existing binary. Otherwise, install Edge system-wide first and then run Extension.js with `--browser=edge` (or use `chromium`).
|
|
171
|
-
|
|
172
|
-
Default managed cache locations are stable and human-readable:
|
|
173
|
-
- macOS: `~/Library/Caches/extension.js/browsers`
|
|
174
|
-
- Linux: `~/.cache/extension.js/browsers` (or `$XDG_CACHE_HOME/extension.js/browsers`)
|
|
175
|
-
- Windows: `%LOCALAPPDATA%\\extension.js\\browsers`
|
|
176
|
-
|
|
177
|
-
If you want a custom path, set `EXT_BROWSERS_CACHE_DIR` to a clean location (for example, `EXT_BROWSERS_CACHE_DIR=/tmp/extension.js/browsers-dev`).
|
|
178
|
-
|
|
179
140
|
## Sponsors
|
|
180
141
|
|
|
181
142
|
<div align="center">
|
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"extension": "./bin/extension.cjs"
|
|
34
34
|
},
|
|
35
35
|
"name": "extension",
|
|
36
|
-
"version": "3.8.
|
|
36
|
+
"version": "3.8.13",
|
|
37
37
|
"description": "Create cross-browser extensions with no build configuration.",
|
|
38
38
|
"homepage": "https://extension.js.org/",
|
|
39
39
|
"bugs": {
|
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
"@types/chrome": "^0.1.33",
|
|
91
91
|
"@types/node": "^25.2.0",
|
|
92
92
|
"@types/webextension-polyfill": "0.12.4",
|
|
93
|
-
"extension-create": "3.8.
|
|
94
|
-
"extension-develop": "3.8.
|
|
95
|
-
"extension-install": "3.8.
|
|
93
|
+
"extension-create": "3.8.13",
|
|
94
|
+
"extension-develop": "3.8.13",
|
|
95
|
+
"extension-install": "3.8.13",
|
|
96
96
|
"commander": "^14.0.3",
|
|
97
97
|
"pintor": "0.3.0",
|
|
98
98
|
"semver": "^7.7.3",
|