Download Gemini Images
Uses your logged-in Chrome session to pull full-size images out of a Google Gemini conversation, rename them in order, and bundle them into a verified ZIP.
AutomationIntermediate★ 1,323⑂ 212AI score 8/10Last updated: Aug 8, 2026
What it does
- Reuses your already-authenticated Chrome/Gemini tab instead of launching a fresh, unauthenticated browser.
- Opens each image lightbox to grab the larger
blob:asset rather than the small thumbnail. - Renames files in thread order (
image_01.jpg,image_02.jpg, ...). - Runs
scripts/package_images.shto build a ZIP, test it withzip -T, and confirm the archive matches the directory contents. - Falls back to the tab's
pageAssetscapability (~512px previews) when lightbox automation fails, and tells you the resolution is lower.
Who it's for
- Anyone who needs to bulk-export images shared in a Gemini chat.
- Designers and content folks who must hand off a tidy ZIP of reference images.
- Users already running Claude Code's Chrome/browser automation plugin.
Example uses
- "Download all 20 photos I uploaded in this Gemini thread and zip them" → run with
expectedCount: 20, get~/Downloads/gemini_conversation_images.zip. - Unknown count: omit
expectedCountso every visible lightbox button on the page is processed. - Lightbox blocked or broken: use the
pageAssetsfallback to bundle googleusercontent preview images and report the lower resolution.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/download-gemini-images/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the download-gemini-images folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/download-gemini-images/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/download-gemini-images ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/daymade/claude-code-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill in:
cp -r claude-code-skills/download-gemini-images ~/.claude/skills/ - Make the packaging script executable:
chmod +x ~/.claude/skills/download-gemini-images/scripts/package_images.sh - Verify prerequisites:
zip -vandnode -v. - Enable Claude Code's Chrome control (browser automation) plugin, sign in to Google in Chrome, and leave the target Gemini conversation open.
- Restart Claude Code and ask: "Download every image from this Gemini conversation and package them as a ZIP."
View source on GitHub ↗License: MIT