There are two ways to install the Grok Auto Retry extension for Chrome. The quickest path is to use a release ZIP, while building locally (listed second) remains the recommended way if you want to inspect the source before loading it.
- Google Chrome or a Chromium-based browser that supports extensions
- Ability to download files from GitHub Releases
-
Download the packaged build:
- Visit the GitHub Releases
- Download the latest asset ending with
-dist.zip
-
Extract the ZIP:
- Unzip the archive to a convenient location (e.g.,
~/Downloads/grok-auto-retry-dist)
- Unzip the archive to a convenient location (e.g.,
-
Open the Chrome Extensions page:
- Go to
chrome://extensions/ - Or click the puzzle icon → "Manage Extensions"
- Go to
-
Enable Developer Mode:
- Toggle the "Developer mode" switch in the top-right corner
-
Load the extracted build:
- Click "Load unpacked"
- Select the unzipped folder (it should contain the built
manifest.json) - The extension should now appear in your extensions list
-
Verify installation:
- Navigate to https://grok.com/imagine or https://grok.com/imagine/post/*
- You should see the control panel in the bottom-right corner
- Node.js 18 or newer
- npm (bundled with Node.js)
- Git (optional, but makes cloning easier)
- Google Chrome or a Chromium-based browser that supports extensions
-
Install dependencies & build:
cd extension npm install npm run build -
Open the Chrome Extensions page:
- Go to
chrome://extensions/ - Or click the puzzle icon → "Manage Extensions"
- Go to
-
Enable Developer Mode:
- Toggle the "Developer mode" switch in the top-right corner
-
Load the local build:
- Click "Load unpacked"
- Select the
extension/distfolder you just built
-
Verify installation:
- Navigate to https://grok.com/imagine or https://grok.com/imagine/post/*
- You should see the control panel in the bottom-right corner
If you need to install Node.js (which includes npm), follow the instructions for your operating system:
-
macOS (Homebrew):
brew update brew install node
-
macOS / Windows / Linux (Official Installer):
- Visit https://nodejs.org/.
- Download the "LTS" installer for your platform.
- Run the installer and follow the prompts.
- Restart your terminal after installation so the new
nodeandnpmcommands are available.
-
Windows (winget):
winget install OpenJS.NodeJS.LTS
-
Linux (Debian/Ubuntu):
sudo apt update sudo apt install nodejs npm
After installation completes, verify the tools are available:
node --version
npm --versionBoth commands should print version numbers (for example, v20.11.0 for Node.js).