About Thumb Grabber

A no-funnel, no-upsell tool for grabbing YouTube thumbnails. Here's how it ended up that way and what the site does (and doesn't do) under the hood.

Why this exists

In early 2024 I needed to download the maxres thumbnail of a friend's YouTube video to use as the cover of a podcast episode. The top three results on Google were all the same shape: a giant fake "Download" banner ad covering the screen, the real download button buried under it, and either a popup asking for an email or a redirect to a sketchy installer.

The annoying thing is that the underlying mechanic is trivial. YouTube exposes every thumbnail at a predictable URL — img.youtube.com/vi/VIDEO_ID/maxresdefault.jpg. You don't need an API key, you don't need to scrape the video page, you don't need a server. It's a static URL pattern. So I built the site in an evening and put it online.

What the site does

You paste a YouTube URL. The browser extracts the video ID with a regex, then requests each of the five standard thumbnail sizes (default, mqdefault, hqdefault, sddefault, maxresdefault) directly from img.youtube.com. The ones that come back at their real size get shown to you as cards with Preview and Download buttons. That's the whole thing.

The download itself is a normal browser image-save, just wrapped in a one-click shortcut. The file you get is identical, byte-for-byte, to what YouTube serves its own video player. We don't recompress it, don't watermark it, don't proxy it through a server.

What the site doesn't do

  • → It doesn't ask for an email, even in exchange for "premium" features. There are no premium features.
  • → It doesn't proxy your video URL through a server. Your URL never leaves your browser. We literally couldn't log it if we tried — the form doesn't POST anywhere.
  • → It doesn't have any "Download YouTube Video" buttons. There are good and legal reasons to download a thumbnail (commentary, archive, lesson slides). Downloading the video is a different question and a different tool.
  • → It doesn't bundle a sneaky desktop installer, a Chrome extension, or a "free trial" of anything.

How the site is funded

Google AdSense banner ads on the page. That's all. The hosting bill is a few dollars a month and AdSense covers it with room to spare. If you ever see a popup, a redirect, or a "complete this survey to unlock" page on this site, something has been broken into and we'd appreciate the heads-up — the contact link is in the footer.

Who's behind it

One person currently. I built the original version in an evening and the site now gets a few thousand visits a day in six languages. The translations were done by people I know who speak those languages natively — not run through Google Translate.

If you'd like to suggest a feature, report a bug, ask about adding a language, or just say hi, the contact page is the place.

Editorial principles

Every guide article on this site is written by a person, not generated. If a technique we describe stops working (YouTube changes their CDN occasionally), we update the article and re-date it at the top instead of leaving stale steps in place. If an article says "this works in 2026", it's because someone tested it in 2026.