NAS Download Manager (for Synology)

NAS Download Manager (for Synology)

Add and manage Download Station tasks on your Synology DiskStation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NAS Download Manager (for Synology)",
  "version": "0.12.2",
  "description": "__MSG_Add_and_manage_Download_Station_tasks_on_your_Synology_DiskStation__",
  "default_locale": "en",
  "background": {
    "scripts": [
      "dist/background/index.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "storage",
    "notifications",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist/content/index.js"
      ]
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_title": "NAS Download Manager",
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "64": "icons/icon-64.png",
      "128": "icons/icon-128.png",
      "256": "icons/icon-256.png"
    }
  },
  "options_ui": {
    "page": "html/settings.html"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  }
}