Pdf Downloader

Pdf Downloader

Quickly download scientific papers. This extension will allow you to quickly download pdf's from all the popular scientific journals, and automatically name them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Pdf Downloader",
  "description": "This extension parse a page and download any pdf links, giving you the option to name them",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "matches": [
      "<all_urls>"
    ],
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "downloads"
  ]
}