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.
I need to save many pictures with file name as they are in alt text for that page for example:
https://www.flaticon.com/packs/leaves
Any help with js? Tired to rename manually.
Well someone will waste hours writing JS just to save a few second of your time?
Save images one by one, it takes 2 clicks and 1 enter.
(indeed i tried to did it, had frustation :)
ok, it's an interesting task, I'll think about it once again
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)); })()