1. unzip-crx
Unzip chrome extension files
unzip-crx
Package: unzip-crx
Created by: peerigon
Last modified: Tue, 28 Jun 2022 05:27:21 GMT
Version: 0.2.0
License: MIT
Downloads: 25,961
Repository: https://github.com/peerigon/unzip-crx

Install

npm install unzip-crx
yarn add unzip-crx

unzip-crx

Unzip chrome extension files

Build Status Dependency Status Coverage Status

If you want to unzip Chrome extension files (*.crx) you might have the problem that your unzip lib claims that the file header is malformed. This is due to that Chrome adds some extra information for identifying crx files. unzip-crx handles those additional headers and unzips as usual.

This lib is highly inspired by crx2ff from abarreir, thanks!

Installation

$ npm install unzip-crx

Example

 const unzip = require("unzip-crx");

const crxFile = "./this-chrome-extension.crx";

unzip(crxFile).then(() => {
  console.log("Successfully unzipped your crx file..");
});

API

unzip(file[, destination])

Resolves with a Promise if the file was unzipped successfully, throws otherwise (use .catch()).

Contributing

From opening a bug report to creating a pull request: every contribution is appreciated and welcome. If you're planing to implement a new feature or change the api please create an issue first. This way we can ensure that your precious work is not in vain.

All pull requests should have 100% test coverage (with notable exceptions) and need to pass all tests.

  • Call npm test to run the unit tests
  • Call npm run coverage to check the test coverage (using istanbuljs/nyc)

LICENSE

MIT

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code