Browser Extension to manage...
- todo
see https://nodejs.org/en/download/package-manager
npm install --global yarn
Open a terminal, navigate to your projects root folder and run
git clone --recurse-submodules https://github.com/evandor/bibbly-extension.git
cd bibbly-extension
./updateAndBuild.shOpen chrome://extensions/ in chrome, and activate "developer mode". Then, on the left, click "Load unpacked extension", navigate to the bibbly-extensions folder and pick the "dist/bex" subfolder.
make sure you added the submodules: in the root folder, run
git submodule add -b main https://github.com/evandor/submodule-content.git src/content
git submodule add -b main https://github.com/evandor/submodule-core.git src/core
git submodule add -b main https://github.com/evandor/submodule-features.git src/features
This has to be done once only.
Hint: running into something like "fatal: 'src/core' already exists in the index" can be fixed with
git rm --cached src/core
yarn installor
npm install