TorrentDay Batch Download

TorrentDay Batch Download

Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TorrentDay Batch Download",
  "version": "0.0.4",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "TorrentDay Batch Download",
    "default_popup": "about.html"
  },
  "permissions": [
    "storage",
    "downloads"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.torrentday.com/*",
        "https://www.torrentday.com/*",
        "http://torrentday/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}