Torrent Control

Torrent Control

Send torrent and magnet links to your Bittorrent client's web interface. Supports BiglyBT, Cloud Torrent, Deluge, Flood, ruTorrent, Tixati, Transmission, tTorrent, µTorrent, Vuze and qBittorrent.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Torrent Control",
  "version": "0.2.37",
  "description": "Add torrent and magnet links to your Bittorrent client's web interface.",
  "default_locale": "en",
  "icons": {
    "32": "icon/default-32.png",
    "48": "icon/default-48.png",
    "64": "icon/default-64.png"
  },
  "options_ui": {
    "browser_style": true,
    "page": "view/options.html"
  },
  "browser_action": {
    "default_area": "navbar",
    "theme_icons": [
      {
        "light": "icon/default-light.svg",
        "dark": "icon/default.svg",
        "size": 32
      },
      {
        "light": "icon/default-light.svg",
        "dark": "icon/default.svg",
        "size": 64
      }
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "68.0",
      "id": "{e6e36c9a-8323-446c-b720-a176017e38ff}"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "contextMenus",
    "cookies",
    "notifications",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "page": "background.html"
  },
  "protocol_handlers": [
    {
      "protocol": "magnet",
      "name": "Torrent Control Magnet Handler",
      "uriTemplate": "https://torrent-control.invalid/%s"
    }
  ]
}