A tiny extension to help me learn more about AntD and how extensions work.
Boilerplate used to create this project: Chrome Extension (MV3) Boilerplate with React 18 and Webpack 5.
- Install dependencies with
npm ci
. - Run the local web server with
npm start
. - Load the extension on Brave/Chrome:
- Access the extensions page (e.g.,
brave://extensions
,chrome://extensions
). - Check
Developer mode
. - Click on
Load unpacked
. - Select the
build
folder.
- Access the extensions page (e.g.,
In order to release a new version, follow these steps:
- Update the
version
inpackage.json
. - Run
npm install
(this will update the lock file). - Create a tag in GitHub with the pattern
v*
(use the same version declared inpackage.json
).- e.g.,
git tag v<version> && git push origin v<version>
- e.g.,