Download Station (client for Synology NAS)

Download Station (client for Synology NAS)

Chrome extension for Synology Download Station

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Chrome extension for Synology Download Station",
  "version": "3.10.9",
  "name": "Download Station (client for Synology NAS)",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "32": "assets/icons/icon-32.png",
    "64": "assets/icons/icon-64.png",
    "128": "assets/icons/icon-128.png",
    "256": "assets/icons/icon-256.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "entry/background.entry.js"
  },
  "action": {
    "default_title": "Synology Download Station",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/icon-16.png",
      "32": "assets/icons/icon-32.png",
      "64": "assets/icons/icon-64.png",
      "128": "assets/icons/icon-128.png",
      "256": "assets/icons/icon-256.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "entry/contentScript.entry.js"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "contextMenus",
    "notifications",
    "storage",
    "tabs",
    "downloads",
    "downloads.open"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}