Ignition Toolbelt is a Chrome Extension that streamlines Ignitioneers' daily operations.
- Introduction: Introduction to the project.
- Chrome Extension (MV3) Boilerplate with React 18 and Webpack 5: This project is based on this boilerplate.
It's only required when you need to develop the extension. If you only need to use the extension, you can install it from the Introducion page above.
git clone git@github.com:ignitionapp/ignition-toolbelt.git;
cd ignition-toolbelt;
brew install asdf;
echo '. /opt/homebrew/opt/asdf/libexec/asdf.sh' >> ~/.zshrc;
source ~/.zshrc;
# Use asdf to install the current node version as specified in .tool-versions file
asdf plugin add nodejs;
asdf install nodejs;
# This should print the current version (currently 20.11.0)
asdf current nodejs;
# => nodejs 20.11.0 /Users/foo/...
yarn install;
yarn start;
In Chrome browser, click the Window
menu, then Extensions
. Click the Load unpacked
button and select the build
directory.