@pxlarified/browser 1.9.8 → 1.9.10
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 +1 -1
- package/dist/extensions/firefox/openbrowser-dev.xpi +0 -0
- package/dist/extensions/firefox/openbrowser.xpi +0 -0
- package/dist/extensions/firefox/signed/8cfe45915b2d499ab5d0-1.9.10.xpi +0 -0
- package/extensions/manifest.json +1 -1
- package/package.json +7 -2
- package/dist/extensions/firefox/signed/8cfe45915b2d499ab5d0-1.9.5.xpi +0 -0
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.10-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>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/extensions/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pxlarified/browser",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.10",
|
|
4
4
|
"description": "Minimal local browser-control CLI for OpenBrowser.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/mizius-studios/OpenBrowser"
|
|
8
|
+
},
|
|
5
9
|
"type": "module",
|
|
6
10
|
"bin": {
|
|
7
|
-
"OpenBrowser": "
|
|
11
|
+
"OpenBrowser": "bin/OpenBrowser.js"
|
|
8
12
|
},
|
|
9
13
|
"scripts": {
|
|
10
14
|
"sync:version": "node scripts/sync-version.js",
|
|
11
15
|
"build": "node scripts/build.js firefox",
|
|
12
16
|
"build:firefox": "node scripts/build.js firefox",
|
|
17
|
+
"test": "node --test coverage/*.test.js",
|
|
13
18
|
"release:firefox": "node scripts/sign-firefox.js",
|
|
14
19
|
"prepack": "npm run build"
|
|
15
20
|
},
|
|
Binary file
|