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

Qwant/WebExtension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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