SBS Movie Ratings

SBS Movie Ratings

Movie Ratings on the SBS ondemand website. Display ratings when choosing a movie to watch on SBS ondemand

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SBS Movie Ratings",
  "version": "1.2",
  "author": "Matthew Farrell",
  "description": "Movie Ratings on the SBS ondemand website.\n Display ratings when choosing a movie to watch on SBS ondemand",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.sbs.com.au/ondemand/*"
      ],
      "run_at": "document_end",
      "js": [
        "ratings.js"
      ]
    }
  ],
  "manifest_version": 2
}