NeverDecaf / discord-PWA

A wrapper for the Discord web client as a PWA, made for Chromium browsers on desktop.
MIT License
145 stars 13 forks source link

Provide instructions to build the chrome extension #14

Closed srevinsaju closed 3 years ago

srevinsaju commented 3 years ago

Great Project!

I am interested to know how the crx extension was built I am not a fan of binaries in git repositories. I would like to see how you built it, to ensure security and transparency.

Thanks :D

NeverDecaf commented 3 years ago

CRX is an archive file format similar (or perhaps identical) to ZIP with some extra metadata, presumably the extension's public key. You can extract the contents with a program like 7zip, but you may need to rename the file to .zip first depending on the method used. To create a CRX file visit chrome://extensions, enable developer mode, and click Pack extension.

srevinsaju commented 3 years ago

Cool. thanks for the information