@pxlarified/browser 1.9.4 → 1.9.5

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 CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  <p align="center">
10
10
  <img alt="Node.js" src="https://img.shields.io/badge/Node.js-%3E%3D20-339933?style=flat-square&logo=node.js&logoColor=white">
11
- <img alt="Version" src="https://img.shields.io/badge/version-1.9.4-blue?style=flat-square">
11
+ <img alt="Version" src="https://img.shields.io/badge/version-1.9.5-blue?style=flat-square">
12
12
  <img alt="Browser" src="https://img.shields.io/badge/browser-Zen-7F52FF?style=flat-square">
13
13
  <img alt="Firefox Extension" src="https://img.shields.io/badge/Firefox-WebExtension-FF7139?style=flat-square&logo=firefoxbrowser&logoColor=white">
14
14
  </p>
@@ -170,11 +170,11 @@ References become invalid after navigation or relevant DOM updates. Commands tha
170
170
 
171
171
  OpenBrowser uses browser-specific adapters so additional browsers can be added later.
172
172
 
173
- Currently supported:
173
+ Currently supported.
174
174
 
175
175
  - Zen - Firefox-based browser.
176
176
 
177
- Planned architecture support:
177
+ Planned architecture support.
178
178
 
179
179
  - Firefox-family browsers through signed `.xpi` artifacts.
180
180
  - Chromium-family browsers through `.zip` extension artifacts.
@@ -189,13 +189,13 @@ Build the Firefox development artifact.
189
189
  npm run build:firefox
190
190
  ```
191
191
 
192
- The unsigned development artifact is written to:
192
+ The unsigned development artifact is written to.
193
193
 
194
194
  ```text
195
195
  dist/extensions/firefox/openbrowser-dev.xpi
196
196
  ```
197
197
 
198
- When a signed release artifact exists, the installer prefers:
198
+ When a signed release artifact exists, the installer prefers.
199
199
 
200
200
  ```text
201
201
  dist/extensions/firefox/openbrowser.xpi
@@ -212,19 +212,19 @@ AMO_JWT_ISSUER="..."
212
212
  AMO_JWT_SECRET="..."
213
213
  ```
214
214
 
215
- Then run:
215
+ Then run.
216
216
 
217
217
  ```sh
218
218
  npm run release:firefox
219
219
  ```
220
220
 
221
- The release script submits the extension for Mozilla unlisted signing with `web-ext sign --channel unlisted` and bundles the resulting signed XPI at:
221
+ The release script submits the extension for Mozilla unlisted signing with `web-ext sign --channel unlisted` and bundles the resulting signed XPI at.
222
222
 
223
223
  ```text
224
224
  dist/extensions/firefox/openbrowser.xpi
225
225
  ```
226
226
 
227
- Equivalent signing command:
227
+ Equivalent signing command.
228
228
 
229
229
  ```sh
230
230
  npx web-ext sign \
@@ -251,7 +251,7 @@ Publish the package publicly.
251
251
  npm publish --access public
252
252
  ```
253
253
 
254
- The package is configured with:
254
+ The package is configured with.
255
255
 
256
256
  ```json
257
257
  {
@@ -283,7 +283,7 @@ Run the CLI locally without publishing.
283
283
  npm exec --package . OpenBrowser -- --help
284
284
  ```
285
285
 
286
- Project entry points:
286
+ Project entry points.
287
287
 
288
288
  - Logo source - `assets/logo.svg`
289
289
  - CLI - `bin/OpenBrowser.js`
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 2,
3
3
  "name": "OpenBrowser",
4
- "version": "1.9.4",
4
+ "version": "1.9.5",
5
5
  "description": "Local user-scoped browser control bridge for the OpenBrowser CLI.",
6
6
  "icons": {
7
7
  "48": "assets/logo.svg",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pxlarified/browser",
3
- "version": "1.9.4",
3
+ "version": "1.9.5",
4
4
  "description": "Minimal local browser-control CLI for OpenBrowser.",
5
5
  "type": "module",
6
6
  "bin": {