TomatoFlix

TomatoFlix

Add RottenTomatoes ratings to Netflix

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TomatoFlix",
  "version": "2.1.2",
  "description": "Add RottenTomatoes ratings to Netflix",
  "icons": {
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "permissions": [
    "tabs",
    "*://*.netflix.com/*",
    "*://api.rottentomatoes.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "jquery-1.7.1.min.js",
        "mustache.js",
        "tomatoflix-compiled.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "content.css",
    "img/external.png",
    "img/poster-default-30.png",
    "img/rating-certified-fresh-16.png",
    "img/rating-fresh-16.png",
    "img/rating-rotten-16.png",
    "img/rating-upright-16.png",
    "img/rating-spilled-16.png"
  ],
  "manifest_version": 2
}