Skip to content
This repository was archived by the owner on Apr 23, 2024. It is now read-only.

Latest commit

 

History

History
40 lines (26 loc) · 484 Bytes

README.md

File metadata and controls

40 lines (26 loc) · 484 Bytes

Build Firefox Extension Without Docker

Install dependencies

yarn install

Generate manifest

cat public/manifest.template.json | sed "s/__XXX_browser_XXX__/firefox/g" > public/manifest.json

Build code

yarn build

Build Chrome Extension Without Docker

Install dependencies

yarn install

Generate manifest

cat public/manifest.template.json | sed "s/__XXX_browser_XXX__/chrome/g" > public/manifest.json

Build code

yarn build