@pxlarified/browser 1.9.4 → 1.9.6

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/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Fork-for-Pull-Request-Only License
2
+
3
+ Copyright (c) 2026 OpenBrowser contributors.
4
+
5
+ Permission is granted only to fork this repository and make changes solely for the purpose of preparing and submitting a pull request back to the upstream OpenBrowser repository.
6
+
7
+ No other rights are granted. Without prior written permission from the copyright holder, you may not use, copy, publish, distribute, sublicense, sell, host, run as a service, package, release, modify outside the pull-request purpose above, or create derivative works for any other purpose.
8
+
9
+ If your pull request or any portion of it is accepted into the upstream repository, the accepted contribution is licensed to the upstream project under this same license unless a separate written agreement says otherwise.
10
+
11
+ All copies or forks made under this license must retain this license notice.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF OR OTHER DEALINGS IN THE SOFTWARE.
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.6-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>
@@ -27,6 +27,10 @@ npx @pxlarified/browser <command>
27
27
 
28
28
  The local agent skill lives in `skills/OpenBrowser/` and is not published as a separate npm skill package.
29
29
 
30
+ ## License
31
+
32
+ This project uses a custom fork-for-pull-request-only license. It grants permission only to fork the repository and make changes for submitting a pull request upstream; no other use, distribution, or derivative-work rights are granted. See [LICENSE](LICENSE).
33
+
30
34
  ## Features
31
35
 
32
36
  - Provides a minimal `OpenBrowser` CLI for browser session lifecycle, navigation, inspection, screenshots, scrolling, and interaction.
@@ -170,11 +174,11 @@ References become invalid after navigation or relevant DOM updates. Commands tha
170
174
 
171
175
  OpenBrowser uses browser-specific adapters so additional browsers can be added later.
172
176
 
173
- Currently supported:
177
+ Currently supported.
174
178
 
175
179
  - Zen - Firefox-based browser.
176
180
 
177
- Planned architecture support:
181
+ Planned architecture support.
178
182
 
179
183
  - Firefox-family browsers through signed `.xpi` artifacts.
180
184
  - Chromium-family browsers through `.zip` extension artifacts.
@@ -189,13 +193,13 @@ Build the Firefox development artifact.
189
193
  npm run build:firefox
190
194
  ```
191
195
 
192
- The unsigned development artifact is written to:
196
+ The unsigned development artifact is written to.
193
197
 
194
198
  ```text
195
199
  dist/extensions/firefox/openbrowser-dev.xpi
196
200
  ```
197
201
 
198
- When a signed release artifact exists, the installer prefers:
202
+ When a signed release artifact exists, the installer prefers.
199
203
 
200
204
  ```text
201
205
  dist/extensions/firefox/openbrowser.xpi
@@ -212,19 +216,19 @@ AMO_JWT_ISSUER="..."
212
216
  AMO_JWT_SECRET="..."
213
217
  ```
214
218
 
215
- Then run:
219
+ Then run.
216
220
 
217
221
  ```sh
218
222
  npm run release:firefox
219
223
  ```
220
224
 
221
- The release script submits the extension for Mozilla unlisted signing with `web-ext sign --channel unlisted` and bundles the resulting signed XPI at:
225
+ The release script submits the extension for Mozilla unlisted signing with `web-ext sign --channel unlisted` and bundles the resulting signed XPI at.
222
226
 
223
227
  ```text
224
228
  dist/extensions/firefox/openbrowser.xpi
225
229
  ```
226
230
 
227
- Equivalent signing command:
231
+ Equivalent signing command.
228
232
 
229
233
  ```sh
230
234
  npx web-ext sign \
@@ -251,7 +255,7 @@ Publish the package publicly.
251
255
  npm publish --access public
252
256
  ```
253
257
 
254
- The package is configured with:
258
+ The package is configured with.
255
259
 
256
260
  ```json
257
261
  {
@@ -283,7 +287,7 @@ Run the CLI locally without publishing.
283
287
  npm exec --package . OpenBrowser -- --help
284
288
  ```
285
289
 
286
- Project entry points:
290
+ Project entry points.
287
291
 
288
292
  - Logo source - `assets/logo.svg`
289
293
  - 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.6",
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.6",
4
4
  "description": "Minimal local browser-control CLI for OpenBrowser.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -35,5 +35,5 @@
35
35
  "web-ext": "^8.3.0",
36
36
  "yazl": "^3.3.1"
37
37
  },
38
- "license": "UNLICENSED"
38
+ "license": "SEE LICENSE IN LICENSE"
39
39
  }