Netflix IMDB top 250

Netflix IMDB top 250

Removes all movies that aren't in the IMDB top 250 from Netflix.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix IMDB top 250",
  "version": "1.0",
  "description": "Removes all movies that aren't in the IMDB top 250 from Netflix.",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "Cull all movies not in the IMDB top 250!"
  },
  "permissions": [
    "declarativeContent",
    "http://www.imdb.com/*",
    "*://*.netflix.com/*"
  ],
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "manifest_version": 2
}