HBO IMDB Ratings for Chrome

HBO IMDB Ratings for Chrome

This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HBO IMDB Ratings for Chrome",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "https://*.hbonordic.com/*"
      ],
      "js": [
        "jquery-3.4.0.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/riktigIcon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}