Netflix Rating

Netflix Rating

View IMDB and Rotten Tomatoes scores inside Netflix!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Rating",
  "version": "2.0.7",
  "description": "View IMDB and Rotten Tomatoes scores inside Netflix!",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.netflix.com/browse"
  ],
  "action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "NetflixRating.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3
}