Automatically download PDFs with Chromium?

5

1

Every time I try to download a PDF document with Chromium, it asks me the following question:

This type of file can harm your computer. Do you want to keep 'file.pdf' anyway? [Discard] [Keep]

How can I get rid of this and download all *.pdf documents straightaway? Any ideas?

719016

Posted 2013-01-08T09:41:04.103

Reputation: 2 899

1You mean Chromium - Chrome has an inbuilt PDF reader & will display the PDF – Sathyajith Bhat – 2013-01-08T09:49:01.943

Check this out: http://superuser.com/questions/111674/google-chrome-annoying-download-warning

– Petr Abdulin – 2013-02-07T02:26:16.227

2@Sathya you will get this in Chrome as well under certain circumstances. – MDMoore313 – 2013-02-12T01:53:33.637

Answers

2

Just as I suspected, there's nothing you can do. This comes from google's (or Chromium, depending on your browser) inability to find out if the website is secure or not, which is why we get the popup on some sites but not others. https://stackoverflow.com/questions/9512919/getting-around-chromes-malicious-file-warning

I know it's not the answer you're hoping for, but it is an answer indeed.

MDMoore313

Posted 2013-01-08T09:41:04.103

Reputation: 4 874

-1

This old advice may still apply to the current Chromium :
After downloading a PDF successfully and it appears in the bottom bar, click the Down arrow to open up the context menu and make sure "Always open files of this type" is checked.
source

One workaround is to enable "Ask where to save each file before downloading" in the Preferences "Under the Hood" tab. It will still show the Save dialog, but just hit Enter to dismiss.
source

In general, this behavior is apparently "by design", as discussed in :
Issue 65895: Can no longer auto-open PDFs because they're considered unsafe.

A proposed solution (#57) in that issue report was :

It was suggested twice to "set the filetype to auto-open". Unfortunately, I could not find a GUI to do this. Looking into the source code, I found the relevant place in the configuration file. As a result, you can get rid of the annoying "pdf can harm your computer" warning by doing:

  1. Exit chromium
  2. edit ~/.config/chromium/Default/Preferences
  3. Locate a section that looks like:
    "download": {
    "directory_upgrade": true,
    "extensions_to_open": "",
    "prompt_for_download": false
    },
  4. Change the "extensions_to_open" setting from "" to "pdf". If there are already other extensions, use a colon to separate "pdf" from the existing entries (i.e. "foo:bar:pdf").
  5. Save the configuration file. Now chromium should work fine and download pdf files without the "...can harm..." warning. The instructions are valid for Ubuntu Linux. Other operating systems may store the configuration file in different places.

Unfortunately, I don't have Chrome to test this suggestion, but it seems that this advice doesn't work for everybody.

harrymc

Posted 2013-01-08T09:41:04.103

Reputation: 306 093

I've tested this with Version 24.0.1312.56 Ubuntu 12.10. It doesn't work anymore. – Dennis – 2013-02-13T02:05:24.180

I have added a workaround and more info. – harrymc – 2013-02-13T08:59:44.070

1pdf gets added to extensions_to_open using the GUI route from your original revision. It opens the PDF after downloading it, but you still have to confirm the download. – Dennis – 2013-02-13T10:19:22.750