Netflix IMDb Ratings

Netflix IMDb Ratings

Adds the IMDb rating to Netflix show cards

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 IMDb Ratings",
  "description": "Adds the IMDb rating to Netflix show cards",
  "version": "1.1",
  "browser_action": {
    "default_icon": "logo.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.netflix.com/*",
        "http://*.netflix.com/*"
      ],
      "js": [
        "page_observer.js",
        "rating_utils.js"
      ]
    }
  ]
}