Two installation paths
You can install minirep in Chrome in two ways:
- Release zip: best for end users who only want to use the extension
- Build from source: best for contributors, internal customization, or local development
Install from the pre-built release zip
This is the recommended path for most users.
- Open the project’s GitHub Releases page
- Download the latest release zip
- Unzip it locally
- Find the extracted folder that contains
manifest.json - Open
chrome://extensions - Enable
Developer mode - Click
Load unpacked - Select the extracted folder that contains
manifest.json
Common mistake
Chrome cannot install the zip directly through Load unpacked. You must unzip the release first and point Chrome at the extracted directory that contains manifest.json.
Build from source
Use this path if you want the current source version or want to change the code.
npm install
npm run build
The unpacked extension will be created in:
.output/chrome-mv3
Load it in Chrome through chrome://extensions using Load unpacked.
How to confirm you selected the right folder
The correct folder contains files and directories such as:
manifest.jsonpanel.htmldevtools.htmlchunks/icon/
If those files are one level deeper than the folder you selected, Chrome will not load the extension correctly.
First launch
After install:
- Open a target site in Chrome
- Open DevTools
- Open the
minireppanel - Reload the page or interact with the application
- Start reviewing captured requests
Updating the extension
If you installed from a release zip
- Download the new release zip
- Unzip it
- In
chrome://extensions, either:- click
Reloadon the existing extension if it already points to the updated extracted folder - or use
Load unpackedagain and select the new extracted folder
- click
If you built from source
npm install
npm run build
Then reload the extension from chrome://extensions.
Troubleshooting install issues
The minirep panel does not appear in DevTools
- reload the extension from
chrome://extensions - close and reopen DevTools
- confirm the extension loaded without manifest errors
The extension loads, but no traffic appears
- reload the inspected page after opening DevTools
- make sure you are viewing the correct tab
- generate real application activity so requests populate
The release zip installs, but the UI is broken
- verify you selected the folder containing
manifest.json, not a parent directory - remove the old unpacked version and load the fresh extracted folder again