The Better Github Image Diff
Chromium/Firefox extension improves the image diff experience on GitHub Files Changed
view.
Difference between the two images are shown in different ways:
- Overlay : shows the different pixels overlayed on the new image
- Difference : shows the different pixels in a new image
The extension allows to customize the highlight color in the pop-up settings.
To run the extension in development mode, run the following commands:
pnpm dev:chromium
pnpm dev:firefox
To build the extension, run the following commands:
pnpm build:chromium
pnpm build:firefox
To run the extension after building, run the following commands, for Google Chromium and Mozilla Firefox respectively:
pnpm start:chromium
pnpm start:firefox
- Clone the repository and install the dependencies using
npm i
- Run
pnpm build:chromium
to build the extension - Open a Chromium-based browser and go to
chrome://extensions/
- Enable
Developer mode
- Click on
Load unpacked
and select thedist
folder
- Clone the repository and install the dependencies using
npm i
- Run
pnpm build:firefox
to build the extension andpnpm pack:firefox
to prepare it for installation - Open Firefox and go to
about:debugging#/runtime/this-firefox
- Click on
Load Temporary Add-on...
and select the .zip package in theweb-ext-artifacts
folder