git clone https://github.com/GDSC-DGU/2025-APAC-SolutionChallenge-BuddhAi.git
cd 2025-APAC-SolutionChallenge-BuddhAi
cd client
yarn install
yarn build
After building, a dist folder will be created in the root directory. This folder contains the manifest.json file and all necessary files for the extension.
-
Open Chrome and go to chrome://extensions/
-
Enable Developer mode (top right corner)
-
Click Load unpacked
-
Select the dist folder generated in the previous step
Your extension should now appear in the Chrome extensions list and be ready for use.
-
Yarn command not found:
Make sure Yarn is installed. See the official guide.
-
Build errors:
Delete node_modules and reinstall:
rm -rf node_modules
yarn install
-
Extension not loading:
Double-check that manifest.json exists in the dist folder and the folder structure matches Chrome Extension requirements.
For more details, refer to the original README or project repository.