@pxlarified/browser 1.9.5 → 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 +13 -0
- package/README.md +5 -1
- package/dist/extensions/firefox/openbrowser-dev.xpi +0 -0
- package/extensions/manifest.json +1 -1
- package/package.json +2 -2
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.
|
|
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.
|
|
Binary file
|
package/extensions/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pxlarified/browser",
|
|
3
|
-
"version": "1.9.
|
|
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": "
|
|
38
|
+
"license": "SEE LICENSE IN LICENSE"
|
|
39
39
|
}
|