Cineworld Ratings

Cineworld Ratings

Adds Rotten Tomatoes ratings inline on the Cineworld website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cineworld Ratings",
  "description": "Adds Rotten Tomatoes ratings inline on the Cineworld website.",
  "version": "1.0",
  "web_accessible_resources": [
    "img/fresh.png",
    "img/splat.png",
    "img/certified-fresh.png",
    "img/certified-fresh-16.png",
    "js/inject.js"
  ],
  "permissions": [
    "storage",
    "http://api.rottentomatoes.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.cineworld.co.uk/*"
      ],
      "js": [
        "js/jquery-1.11.1.min.js",
        "js/plugins/rotten_tomatoes.js",
        "js/app.js"
      ]
    }
  ]
}