creative-upload-extension-updater 0.1.0 → 0.1.1
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 +4 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ macOS Native Messaging updater for the unpacked Creative Upload Chrome extension
|
|
|
5
5
|
## First installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g
|
|
8
|
+
npm install -g creative-upload-extension-updater
|
|
9
9
|
creative-upload-extension-updater install
|
|
10
10
|
```
|
|
11
11
|
|
|
@@ -22,6 +22,9 @@ creative-upload-extension-updater update
|
|
|
22
22
|
creative-upload-extension-updater rollback
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
`creative-upload-updater` is kept as a shorter command alias. Both commands
|
|
26
|
+
run the same updater and are supported for backward compatibility.
|
|
27
|
+
|
|
25
28
|
`update` immediately checks the Registry and applies a newer verified release when available. On macOS it then opens a controlled extension URL so the running extension calls `chrome.runtime.reload()` automatically; pass `--no-reload` to only replace files. `rollback` restores the previous verified extension directory. Chrome must then reload the extension once.
|
|
26
29
|
|
|
27
30
|
## Security
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "creative-upload-extension-updater",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Native Messaging updater for the Creative Upload unpacked Chrome extension.",
|
|
6
6
|
"bin": {
|
|
7
|
-
"creative-upload-updater": "bin/creative-upload-extension-updater.js"
|
|
7
|
+
"creative-upload-updater": "bin/creative-upload-extension-updater.js",
|
|
8
|
+
"creative-upload-extension-updater": "bin/creative-upload-extension-updater.js"
|
|
8
9
|
},
|
|
9
10
|
"engines": {
|
|
10
11
|
"node": ">=18"
|