Netfix

Netfix

Netflix fixes: movies go to pages instead of playing, removes sliders, shows ratings, and hides bad recommendations and rated items

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netfix",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "homepage_url": "http://www.github.com/metermaid/netfix",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "options_page": "options/index.html",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "js/jquery-2.0.3.min.map"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.netflix.com/*",
        "http://*.netflix.ca/*"
      ],
      "css": [
        "css/netfix.css"
      ],
      "js": [
        "js/jquery-2.0.3.min.js",
        "js/netfix.js"
      ]
    }
  ]
}