Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Download Gemini Images

Grabs every image from a Gemini chat via your logged-in Chrome session, names them in thread order, and zips them up.

UtilitiesIntermediate1,323212AI score 7/10Last updated: Aug 8, 2026

What it does

  • Reuses your already-authenticated Chrome session and claims the open gemini.google.com/app tab (or opens a URL you provide).
  • Opens each image lightbox so it can save the larger displayed file instead of the low-res thumbnail Gemini shows inline.
  • Renames downloads sequentially (image_01.jpg, image_02.jpg, …) to match thread order.
  • Packages the output folder into a ZIP, verifies it with zip -T, and reports the archive path plus image count.
  • Falls back to the tab's pageAssets bundle (512px preview JPEGs) if lightbox automation breaks, and tells you the resolution is lower.
  • Explicitly avoids touching cookies, local storage, passwords, or session stores.

Who it's for

  • Anyone who generates or uploads lots of images in Gemini and wants them archived locally.
  • Designers and content folks tired of right-click-save loops.
  • Researchers who need filenames that preserve conversation order.
  • Users already running the Chrome automation skill in Claude Code.

Examples

  1. "Download all images from my open Gemini tab and zip them" → claims the tab, saves every lightbox image in order, produces ~/Downloads/gemini_conversation_images.zip.
  2. "Just pull the first 20 images from this Gemini link" → set expectedCount: 20 for an exact count.
  3. "If the lightbox won't open, previews are fine" → uses the pageAssets fallback for a 512px JPEG bundle with a clear low-res warning.

· · · Install guide · · ·

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 /tmp/claude-code-skills && cp -r /tmp/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. Create the skills folder if needed: mkdir -p ~/.claude/skills
  3. Clone the repo: git clone https://github.com/daymade/claude-code-skills.git /tmp/claude-code-skills
  4. Copy just this skill: cp -r /tmp/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. Confirm zip and Node.js are available: zip -v and node -v.
  7. Enable your Chrome automation skill/plugin, sign in to Google in Chrome, and leave the Gemini conversation open.
  8. Restart Claude Code and ask: "Download the images from my open Gemini conversation and zip them."