RateFlix: IMDb and RT ratings on Netflix

RateFlix: IMDb and RT ratings on Netflix

Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RateFlix: IMDb and RT ratings on Netflix",
  "version": "0.2",
  "description": "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*",
        "https://www.omdbapi.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "rating.css"
      ]
    }
  ],
  "icons": {
    "16": "extentionIcon.png",
    "128": "extentionIcon128.png"
  },
  "permissions": [
    "https://www.netflix.com/*",
    "https://www.omdbapi.com/*"
  ],
  "web_accessible_resources": [
    "rating.js"
  ],
  "browser_action": {
    "default_icon": "extentionIcon.png",
    "default_popup": "popup.html"
  }
}