Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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.

AutomationIntermediate1,323212AI 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.sh to build a ZIP, test it with zip -T, and confirm the archive matches the directory contents.
  • Falls back to the tab's pageAssets capability (~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

  1. "Download all 20 photos I uploaded in this Gemini thread and zip them" → run with expectedCount: 20, get ~/Downloads/gemini_conversation_images.zip.
  2. Unknown count: omit expectedCount so every visible lightbox button on the page is processed.
  3. Lightbox blocked or broken: use the pageAssets fallback 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/daymade/claude-code-skills.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill in: cp -r claude-code-skills/download-gemini-images ~/.claude/skills/
  5. Make the packaging script executable: chmod +x ~/.claude/skills/download-gemini-images/scripts/package_images.sh
  6. Verify prerequisites: zip -v and node -v.
  7. Enable Claude Code's Chrome control (browser automation) plugin, sign in to Google in Chrome, and leave the target Gemini conversation open.
  8. Restart Claude Code and ask: "Download every image from this Gemini conversation and package them as a ZIP."