.torrent to Transmission

.torrent to Transmission

Automagically add, access and control torrents with Chrome.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": ".torrent to Transmission",
  "description": "Automagically add, access and control torrents with Chrome.",
  "version": "1.0.0",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "notifications",
    "http://*/"
  ],
  "background": {
    "page": "html/background.html"
  },
  "options_page": "html/options.html",
  "icons": {
    "16": "img/icon-bitty.png",
    "48": "img/icon-small.png",
    "128": "img/icon-large.png"
  },
  "browser_action": {
    "default_icon": "img/icon-bitty.png",
    "default_title": ".torrent to Transmission",
    "default_popup": "html/list.html"
  },
  "web_accessible_resources": [
    "img/icon-large.png"
  ]
}