Torrent to Web

Torrent to Web

Allows to send torrent files to web clients.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Torrent to Web",
  "version": "2.0.2",
  "description": "Allows to send torrent files to web clients.",
  "icons": {
    "48": "/icons/icon-48.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "notifications",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "options_ui": {
    "page": "/options/options.html"
  },
  "background": {
    "scripts": [
      "/background/main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content/capture-magnet-links.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/icons/error.png"
  ]
}