Remote Downloader

Remote Downloader

Download files with with uTorrent, Synology Download Station (Diskstation), TransmissionBt, ...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Remote Downloader",
  "short_name": "RemoteDownloader",
  "manifest_version": 2,
  "icons": {
    "16": "icons/tasker16.png",
    "48": "icons/tasker48.png",
    "128": "icons/tasker128.png"
  },
  "description": "Download files with with uTorrent, Synology Download Station (Diskstation), TransmissionBt, ...",
  "version": "1.1.6",
  "permissions": [
    "*://*/*",
    "contextMenus",
    "notifications",
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/constants.js",
      "js/extension.js",
      "plugin/plugin_api.js",
      "plugin/utorrent.js",
      "plugin/downloadstation.js",
      "plugin/transmissionbt.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com https://apis.google.com https://platform.twitter.com https://connect.facebook.net https://musculahq.appspot.com; object-src 'self'",
  "browser_action": {
    "default_icon": "icons/tasker16.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html"
}