This planned chrome extension build-out is designed to help people connect. Whether online, by phone, or in person, we want to help you find the time to meet.
- Check if your Node.js version is >= 18.
- Run
npm install
to install dependencies. - Run
npm start
- Load your extension on Chrome following:
- Access
chrome://extensions/
- Check
Developer mode
- Click on
Load unpacked extension
- Select the
build
folder.
- Access
All your extension's code must be placed in the src
folder.
To make your workflow much more efficient this project uses the webpack server to development (started with npm start
) with auto reload feature that reloads the browser automatically every time that you save some file in your editor.
You can run the dev mode on other port if you want. Just specify the env var port
like this:
$ PORT=6002 npm run start
After the development, run the command $ NODE_ENV=production npm run build
to prepare the build
folder for submission to the Chrome Web Store.
- Webpack documentation
- Chrome Extension documentation
- [React Chrome Extension boilderplate] (https://github.com/lxieyang/chrome-extension-boilerplate-react)