Torrent Downloader

Torrent Downloader

Automagically searches and optimizes torrents!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.3",
  "default_locale": "en",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png",
    "512": "icon.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*download*",
        "*://*/*torrent*",
        "*://*/*bluray*",
        "*://*/*dual-audio*",
        "*://*/*web-dl*",
        "*://*/*hdcam*",
        "*://*/*rip*",
        "*://*/*baixar*",
        "*://*/*filme*",
        "*://*/*movie*",
        "*://obtendocreditoonline.xyz/*"
      ],
      "js": [
        "src/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "src/js/utils.js"
  ],
  "background": {
    "scripts": [
      "src/js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "src/view/popup.html",
    "default_icon": "icon.png"
  }
}