Webpage Downloader

Webpage Downloader

It sends the webpage link to a local server for downloading, what more do you want

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Webpage Downloader",
  "description": "It sends the webpage link to a local server for downloading, what more do you want",
  "version": "2.5",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "http://localhost/",
    "contextMenus",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/page-16.png",
      "32": "icons/page-32.png",
      "48": "icons/page-48.png"
    }
  },
  "icons": {
    "48": "icons/page-48.png"
  }
}