I Built a Free IMDB Poster Grabber Because “View Source” Finally Broke Me

TL;DR
I was writing a movie list post and needed a bunch of posters from IMDB. The only reliable way to grab them was the classic “View Source → find the image URL → copy → repeat” routine. I got tired of it, built a tiny local tool… and later turned it into a simple online utility when I rediscovered it during a “clean my Mac” phase.
The annoying problem
I recently wrote a post with a list of werewolf movies. And for every single movie I wanted a poster.
If you’ve ever tried doing this the “normal” way: IMDB doesn’t exactly give you a friendly “download poster” button. So you end up doing the dance:
Open the movie page → open page source → search through HTML → find the image URL → copy → paste → repeat.
It’s not hard. It’s just soul-draining when you need to do it 30+ times.
So yeah… I got angry at “View Source”.
The first version: a local mini-tool
At first I didn’t even plan to make a “project” out of it. I just made a small local tool for myself:
Paste an IMDB link → get the poster image.
That’s it.
It was one of those “two evenings, zero ceremony” things. A pure utility. The kind of code you write when you’re annoyed and want your life back.
Then I cleaned my Mac… and found it again
A bit later I was in that classic mood:
“I will clean my Mac. Delete junk. Organize folders. Become a new person.”
While doing that, I stumbled on this forgotten little tool sitting in my repo like an abandoned pet.
And I had that feeling like… it would be a waste to leave it rotting in GitHub and never use it again.
So I did what every developer does in moments of weakness:
I “just polished it a little” and made it a tiny online tool.
Vibe coding, and forward.
What it turned into
The core is still the same: paste a link, get the image.
But then I added a few extra features because I kept thinking:
“Ok, if I’m already here… might as well.”
Now it can do things like:
- Bulk download posters from a whole list of IMDB links
- Download images from actor pages
- Grab frames/stills (when available)
No grand vision. Just practical stuff I personally needed.
Where it lives now
I host these kinds of tiny utilities on a dedicated subdomain I keep specifically for “random useful nonsense”.
So this one lives here: imdb.m-b.app
The funniest part: people actually used it
After launching it, I left one comment on Reddit about it (not a launch strategy, just me being me).
And that’s it. No Product Hunt. No Twitter thread. No growth hacks.
Later I added Google Analytics… just for fun. Pure curiosity:
Does anyone besides me ever use this?
Turns out… yes. A little. Which is both nice and mildly terrifying.
A small disclaimer
This tool isn’t affiliated with IMDB. It’s just a convenience layer for grabbing images from pages when you already have the link.
Use it responsibly. Don’t hammer the site like a bot. Be normal.
If you want it: try it
If you’re the kind of person who makes lists, writes movie posts, or just hates the “View Source → find URL → repeat” workflow - you’ll probably get it immediately.
If you try it and it breaks on some weird IMDB page… tell me. These tiny tools evolve exactly like that.