Follow these steps to get the code, build the extension, and load it into your Chrome browser.
You have three main options to get the code. Choose one.
- Visit the en-git repository page.
- Click the Code button (green) on the top right.
- Select Download ZIP.
- Extract the ZIP file (this will create a folder like
en-git-main).
- Open your terminal.
- Run the following git command (replace with the actual repository URL):
git clone [https://github.com/USER/en-git.git](https://github.com/USER/en-git.git)
- This creates a folder named
en-git.
- On the GitHub repository page, click Fork in the top-right corner.
- Once forked, follow the steps in Option B, but use the URL from your forked repository.
Screen.Recording.2025-11-01.185414.mp4
- Google Chrome browser installed
- Node.js and npm installed
- Git installed (for Options B and C)
- Open your terminal and navigate into the project folder you just downloaded or cloned (e.g.,
en-git-mainoren-git).cd path/to/en-git-main
- Navigate into the
clientdirectory.cd client
- Install the required packages.
npm install
- Run the build script to create the extension files.
npm run build:extension
This command will build the necessary files and output appropriately.
- Open Chrome and go to
chrome://extensions/ - Enable Developer mode (using the toggle in the top-right).
- Click Load unpacked.
- Navigate to your project folder, then into
client, and select thedistfolder (en-git-main/client/dist). - The en-git extension should now appear in your Chrome toolbar.
If you pull new code from the repository or make local changes to the source :
- In your terminal, navigate back to the
clientdirectory (en-git/client). - Run the build script again.
npm run build:extension
- Return to
chrome://extensions/in your browser. - Click the Reload button (a small circular arrow) on the en-git extension’s card.