Chrome extensions for saving images and media from pages

Right-clicking and choosing Save image as forty times is the slow way to keep a gallery, a product spread or a set of reference shots. Media extensions read what is already loaded on the page and hand you the whole set at once. Most people reach for one after a page turns out to have more images than patience.

1 of 1 are live on a store.

What to look for

Know when the extension reads the page

Anything that lists the images on a page has to inspect that page's DOM. The narrow version is activeTab, which only grants access after you click the toolbar icon; the broad version is a content script matching every site. Image Downloader declares activeTab, downloads, storage and tabs, and its content script matches all sites, so read that as a tool that can see the page you have open.

Watch where the files actually come from

A clean downloader pulls each file straight from its original URL through Chrome's downloads API, so nothing passes through a third party. If a media extension declares host permissions for a domain you do not recognise, or advertises conversion or resizing, your images are likely being uploaded somewhere first. Check the host permissions list before installing.

Scroll the page before you scan it

Infinite-scroll feeds only put images into the page as you reach them, so a scan run at the top of the page finds a fraction of what exists. Load the section you want first, then open the popup. On sites that swap content without a full page reload, reopen the popup after navigating so the list is not stale.

Filter by size before you download

A typical page carries dozens of icons, avatars, tracking pixels and spacer graphics alongside the images you want. Setting a minimum width and height cuts those out and keeps the download folder usable. It also removes duplicate thumbnails of assets you are grabbing at full size.

Questions people ask

How do I download all images from a webpage in Chrome?

Install an image-grabbing extension such as Image Downloader, open the page, then click the toolbar icon to see every detected image as a thumbnail grid. Select the ones you want or use Select All, then download the batch in one click. Files land in your normal Chrome download folder.

Why are some images missing from the list?

A scan can only see what the page has actually loaded. Images below an infinite-scroll boundary, content drawn into a canvas element, and media behind a login you have not passed will not appear. Scrolling through the page first and reopening the popup fixes most of the missing ones.

Can an image downloader see my browsing history?

Image Downloader declares activeTab, downloads, storage and tabs. In the shipped code, tabs is used to find the active tab and message its content script to run a scan, storage keeps your two size-filter values locally, and saved files are named from the last segment of each image's own URL rather than from the page. Its listing states that no browsing history, image URLs or personal data is collected or transmitted, and files download straight from their source URLs.

Is it OK to bulk download images from a site?

Downloading only saves files your browser already fetched to display the page, but copyright and each site's terms of use still apply to what you do next. Personal reference and archiving is a different situation from republishing or training on someone's photos. Check the licence on the source before reusing anything.