Movie Description Plugin for Torrent

Movie Description Plugin for Torrent

Chrome extenstion to The Pirate Bay and Kickass that integrates IMDB/Filmweb movie description and rating into search results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Movie Description Plugin for Torrent",
  "version": "0.4.0",
  "description": "Chrome extenstion to The Pirate Bay and Kickass that integrates IMDB/Filmweb movie description and rating into search results",
  "web_accessible_resources": [
    "ajax_loading_small.gif",
    "options.html"
  ],
  "background": {
    "scripts": [
      "js/options.js",
      "background.js"
    ]
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "http://www.filmweb.pl/*",
    "http://www.imdb.com/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "lib/jquery.min-1.7.2.js",
        "lib/jquery.ajaxq-0.0.1.js",
        "js/options.js",
        "js/blacklist.js",
        "js/cache.js",
        "js/misc.js",
        "js/filmweb.js",
        "js/imdb.js",
        "js/pirateBay.js",
        "js/kickass.js",
        "js/loader.js",
        "js/main.js"
      ],
      "matches": [
        "https://kat.cr/*",
        "https://thepiratebay.org/*"
      ]
    }
  ]
}