- Go to your Shopify
admin/settings/files
page - Open your browser Dev tools, go to the console
Then, depending on the option you choose:
- Make sure your browser is set to download files automatically and doesn't ask for the download location every time
- Paste the content of the
console_download_files.js
file, and press enter - Your browser will automatically fetch each page and download every file on it. It might ask you to accept "multiple downloads" (Chrome)
- Paste the content of the
console_download_list.js
file, and press enter - Your browser will automatically fetch each page and download the list of all the files on the CDN. You'll then be able to use any file download manager to import the list and safely download everything.
@klhurley 's solution worked well for me. Just to add:
You may need to convert (depending on your browser version) the
.webp
file formats that are downloaded by the browser into png or other. If you do need to, find and install https://developers.google.com/speed/webp/docs/dwebp and use that utility to convert them into pngs:I downloaded the utility from homebrew on mac and used the following script to convert all my webp files after copying them all into one folder:
There might be a nicer way to do that but I was in a hurry ;).