Install directly via the chrome web store.
For manual installation:
- clone the repo
npm install
(with node v10.16+)npm run build
- in Chrome, go to
More tools
â¢Extensions
- click
Load unpacked
and select thebuild/
directory
Requires node 10.16+
- run
npm run dev
- manually install the addon (see above)
Other commands
- tests:
npm run test
- analyze bundle:
npm run analyze
- convert icons:
npm run icons
Currently support directory resolvers:
{
"@popup/*": [
"src/popup/*"
],
"@background/*": [
"src/background/*"
],
"@common/*": [
"src/common/*"
],
"@options/*": [
"src/options/*"
]
}
To modify, update:
tscofig.json
package.json
->jest.moduleNameMapper
webpack/config.js
->resolve.alias
MIT