Often I need to download many images from a web page and end up trying and adjusting far too many snippets from Stack Overflow. Here is a snippet that works. Give it two strings to download an image. asyncfunctiondownload(url,name){constres=awaitfetch(url);constblob=awaitres.blob();constblobUrl=URL.createObjectURL(blob);consta=document.createElement("a");a.href=blobUrla.download=name;document.body.appendChild(a);a.click();document.body.removeChild(a);} The browser doesn’t handle downloading...