Netflix Showdown

Netflix Showdown

Quickly decide what to watch on Netflix

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Netflix Showdown",
  "version": "0.1.9",
  "author": "tinj",
  "description": "Quickly decide what to watch on Netflix",
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*.netflix.com/*"
      ],
      "js": [
        "libs/jquery-2.0.3.min.js",
        "libs/moment.min.js",
        "libs/chart.doughnut.js",
        "libs/underscore-min.js",
        "js/stopwatch.js",
        "js/timer.js",
        "js/showdown.js"
      ]
    }
  ],
  "permissions": [
    "http://*.netflix.com/*",
    "http://*.tinj.com/*",
    "http://www.omdbapi.com/*"
  ],
  "web_accessible_resources": [
    "css/showdown.css",
    "img/imdbSprite.png",
    "img/tomatoSprite.png",
    "img/showdown-add.png"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "48": "img/showdown-logo-48.png",
    "128": "img/showdown-logo-128.png"
  }
}