Useful scores for Netflix

Useful scores for Netflix

Shows IMDd, Metacritic, Rotten Tomatoes and TMDb 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": "Useful scores for Netflix",
  "description": "Shows IMDd, Metacritic, Rotten Tomatoes and TMDb on Netflix",
  "version": "2.3",
  "icons": {
    "128": "img/NetCriticLogo.png"
  },
  "permissions": [
    "activeTab",
    "https://www.netflix.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "thirdParty/jquery-3.3.1.min.js",
        "script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "thirdParty/jquery-3.3.1.min.js",
      "infoGetter.js"
    ]
  },
  "web_accessible_resources": [
    "script.js"
  ]
}