Skip to content

Commit

Permalink
Add CRX3 support
Browse files Browse the repository at this point in the history
Google servers recently started sending empty replies when
acceptformat=crx2,crx3 is not passed. Add the option to the URL query
and switch to unzip-crx-3, which supports both CRX v2 and v3.

Closes: MarshallOfSound#139
  • Loading branch information
neocturne committed Jul 10, 2020
1 parent f6932ad commit fe2eeb6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"dependencies": {
"rimraf": "^3.0.2",
"semver": "^7.2.1",
"unzip-crx": "^0.2.0"
"unzip-crx-3": "^0.2.0"
},
"babel": {
"presets": [
Expand Down
4 changes: 2 additions & 2 deletions src/downloadChromeExtension.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs';
import path from 'path';
import rimraf from 'rimraf';
import unzip from 'unzip-crx';
import unzip from 'unzip-crx-3';

import { getPath, downloadFile, changePermissions } from './utils';

Expand All @@ -16,7 +16,7 @@ const downloadChromeExtension = (chromeStoreID, forceDownload, attempts = 5) =>
if (fs.existsSync(extensionFolder)) {
rimraf.sync(extensionFolder);
}
const fileURL = `https://clients2.google.com/service/update2/crx?response=redirect&x=id%3D${chromeStoreID}%26uc&prodversion=32`; // eslint-disable-line
const fileURL = `https://clients2.google.com/service/update2/crx?response=redirect&acceptformat=crx2,crx3&x=id%3D${chromeStoreID}%26uc&prodversion=32`; // eslint-disable-line
const filePath = path.resolve(`${extensionFolder}.crx`);
downloadFile(fileURL, filePath)
.then(() => {
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5708,10 +5708,10 @@ unset-value@^1.0.0:
has-value "^0.3.1"
isobject "^3.0.0"

unzip-crx@^0.2.0:
unzip-crx-3@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/unzip-crx/-/unzip-crx-0.2.0.tgz#4c0baa8bdac756256754beca7843c13d7b858c18"
integrity sha1-TAuqi9rHViVnVL7KeEPBPXuFjBg=
resolved "https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz#d5324147b104a8aed9ae8639c95521f6f7cda292"
integrity sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ==
dependencies:
jszip "^3.1.0"
mkdirp "^0.5.1"
Expand Down

0 comments on commit fe2eeb6

Please sign in to comment.