- Go to your Shopify
admin/settings/files
page - Open your browser Dev tools, go to the console
- Paste the content of the
console_download_list.js
file, and press enter - Your browser will automatically fetch each page and download the list with the links of all the files on the CDN.
- Using your preffered code editor, edit the HTML file by adding each link in img tag.
- Open the HTML file you just edit in a browser then right click-save as. It will download the HTML file again along with all the images in the location you specify.
-
-
Save nayeemch/029767ae2d4e82756d7e7b17709722f9 to your computer and use it in GitHub Desktop.
Download all Shopify CDN assets from a store
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fetchPageAssets() { | |
var assets = $("#assets-table .next-input--readonly") | |
assets.each(function (index, input) { | |
files.push(input.value) | |
if (index + 1 == assets.length) { | |
var lastItem = $(input).parents("tr[bind-class]").attr('bind-class').replace(/\D/g,'') | |
$.ajax({ | |
url: "/admin/settings/files?direction=next&last_id=" + lastItem + "&last_value=" + lastItem + "&limit=100&order=id+desc", | |
}).done(function (data) { | |
var mutationObserver = new MutationObserver(function (mutations, observer) { | |
mutations.some(function (mutation) { | |
if (mutation.target.id && | |
mutation.target.id == "assets-area" && | |
mutation.addedNodes[0].nextElementSibling && | |
mutation.addedNodes[0].nextElementSibling.innerHTML.indexOf("empty") > -1 | |
) { | |
downloadListFile() | |
observer.disconnect() | |
return true; | |
} else if (mutation.target.id && | |
mutation.target.id == "assets-area" && | |
mutation.previousSibling && | |
mutation.previousSibling.className == "ui-layout ui-layout--full-width" | |
) { | |
fetchPageAssets() | |
observer.disconnect() | |
return true; | |
} | |
}) | |
}); | |
mutationObserver.observe(document, { | |
childList: true, | |
subtree: true | |
}); | |
var newDoc = document.open("text/html", "replace"); | |
newDoc.write(data); | |
newDoc.close(); | |
}) | |
} | |
}) | |
} | |
function downloadListFile() { | |
var downloader = $("<a id='download-file' href='' download='shopify-files.html'></a>") | |
$(".ui-title-bar").append(downloader) | |
var data = 'data:application/octet-stream;base64,' + window.btoa(files.join("\r\n")); | |
$('#download-file').attr('href', data); | |
$('#download-file')[0].click(); | |
} | |
var files = [] | |
fetchPageAssets() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment