Save images to hard disk WITHOUT prompt?

后端 未结 6 1856
走了就别回头了
走了就别回头了 2020-11-27 07:52

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.

相关标签:
6条回答
  • 2020-11-27 08:13

    Greasemonkey cannot do this, because ordinary javascript is forbidden to do this (for security reasons), and the Greasemonkey API does not expose a method to write files (and never will).

    Here are four alternatives:

    1. Update: Switch to Tampermonkey, which you should do anyway. Then you can use GM_download as user136036 said in his answer.

      or

    2. Install and use the excellent DownThemAll add-on (Update: Firefox 57 withdrew support for this kind of extension). It still requires one click, but that's better than always grabbing a file willy nilly, in most cases anyway.

      or

    3. Write your own addon extension. See this (now obsolete) answer for file-writing code from one of the top gurus of FF add-ons. But "new" style extensions can still do this.

      or

    4. Use XAMPP (or similar) to run a web server on your machine. You will then have to write a web application that excepts incoming image data (or just the image URL) and saves the image to disk.

    0 讨论(0)
  • 2020-11-27 08:13

    Plugin is the right answer for this. If you are looking for a framework checkout Firebreath it gives you cross platform capability as well as works on all possible browser you can ever think of, including IE. Its easy to learn too

    0 讨论(0)
  • 2020-11-27 08:13

    You can do this easily in Firefox by selecting an option to Save this automatically from now onwards instead of prompting. I guess this option should be available in Chrome too.

    First time when you download a file of new extension say Zip or jpg, the browser may prompt you the location where to save this file. In this case, you can set the location to a default location wherever you want to download the files and set the checkbox to Automatically Download such files.

    0 讨论(0)
  • 2020-11-27 08:17

    It is possible when using Tampermonkey or Violentmonkey (Firefox or Chrome).
    They added the GM_Download command.
    You can use it like this:

    // ==UserScript==
    // @name         New Userscript
    // @namespace    http://tampermonkey.net/
    // @version      0.1
    // @description  try to take over the world!
    // @author       You
    // @match        http*://*/*
    // @grant        GM_download
    // ==/UserScript==
    
    
    var arg = { url: "https://example.com/123456.jpg",
                name: "CustomFileName.jpg"
              };
    
    GM_download(arg);
    

    For more help and available options see the Tampermonkey documentation: https://tampermonkey.net/documentation.php

    0 讨论(0)
  • 2020-11-27 08:24

    You won't be able to do this in the way that you would like. If browsers allowed websites to save whatever content they wanted directly to the user's computer... well you can imagine the consequences.

    0 讨论(0)
  • 2020-11-27 08:30

    JavaScript does not have access to the computer's file system.

    There is no native JS functionality for this. Otherwise any site would be able to save anything to your PC, which would result in your PC getting messed up in no time.

    0 讨论(0)
提交回复
热议问题