A Chrome extension that allows you to easily download all AI-generated images from Google Gemini conversations.
- Floating button in the bottom-right corner of the page
- Shows the count of downloadable images in the current conversation
- Download the latest image with one click
- Download all images at once
- Automatically detects new images as they are generated
- Downloads images in high resolution
- Dark mode support
- Open
icons/generate-icons.htmlin your browser - Click each "Download" button to save the PNG files
- Save them to the
iconsfolder with these exact names:icon16.pngicon48.pngicon128.png
- Open Chrome and go to
chrome://extensions/ - Enable "Developer mode" (toggle in the top-right corner)
- Click "Load unpacked"
- Select this folder (
Gemini-Down-All) - The extension is now installed!
- Go to Gemini
- Have a conversation that generates images
- Look for the floating blue button in the bottom-right corner
- The badge shows how many images are available to download
- Click the button to expand the panel
- Choose either:
- Download Latest: Downloads only the most recent image
- Download All: Downloads all images in the conversation
Gemini-Down-All/
├── manifest.json # Extension configuration
├── background.js # Service worker for downloads
├── content.js # Main script (image detection & UI)
├── styles.css # Styling for the floating button
├── icons/
│ ├── icon.svg # Source SVG icon
│ ├── icon16.png # 16x16 icon (generate this)
│ ├── icon48.png # 48x48 icon (generate this)
│ ├── icon128.png # 128x128 icon (generate this)
│ └── generate-icons.html # Tool to generate PNG icons
└── README.md # This file
- Images are saved to
Downloads/Gemini-Images/folder - Filenames include timestamps for easy organization
- The extension only works on
https://gemini.google.com/ - High-resolution versions of images are downloaded when available
The button doesn't appear:
- Make sure you're on gemini.google.com
- Try refreshing the page
- Check if the extension is enabled in chrome://extensions/
Downloads fail:
- Make sure Chrome has permission to download files
- Check if your download folder has enough space
- Try downloading manually by right-clicking the image
MIT License - Feel free to modify and distribute.