Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
simple bookmarklet
drag the code below to you bookmark bar, and click on it on the website you want to download images
javascript: (function(){ function download(file,name){ const a=document.createElement('a'); a.href=file; a.download=name; a.target='_blank'; document.body.appendChild(a); a.click(); a.remove(); } const imgs=Array.from(document.querySelectorAll('img[alt]')); imgs.forEach(el=>download(el.src,el.alt)); })()