Rotten Netflix

Rotten Netflix

This extension shows Rotten Tomato scores on Netflix.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Rotten Netflix",
  "description": "This extension shows Rotten Tomato scores on Netflix.",
  "version": "0.0.0.3",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": "icon-32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "css": [
        "rottennetflix.css"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "rottennetflix.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "*://*.rottentomatoes.com/*"
  ]
}