I use twitter. Some people's tweets contain photos and I want to save them.
I checked ifttt, where twitter is not a trigger. Thus, ifttt cannot help me do it.
One idea is probably to use JavaScript. I use Firefox and installed Greasemonkey. I can write a Greasemonkey script (JavaScript) running on twitter website. Once I click "retweet" link or other button added by my script, my script examines the content of the tweet, find the URL of the photo, and save it to my disk.
One problem is how to save the image. I searched the Internet. Some use win.document.execCommand("SaveAs")
, and it will show a "save as" window. Now that the window shows, why not just right click the image and choose save as manually? So I don't like the method.
Any suggestions?
GM_download
. It works with TM for Firefox though. – Thirtieth