zRate Hulu Disney+: IMDB Ratings & Show Info

zRate Hulu Disney+: IMDB Ratings & Show Info

Auto-add IMDB ratings, plot, cast, and other useful show info to each show card

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "zRate Hulu Disney+: IMDB Ratings & Show Info",
  "short_name": "zRate Hulu & Disney+",
  "description": "Auto-add IMDB ratings, plot, cast, and other useful show info to each show card",
  "version": "0.0.6",
  "icons": {
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "background": {
    "scripts": [
      "packages/jquery-3.1.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/icon_16.png",
    "default_popup": "popover.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.hulu.com/*"
      ],
      "css": [
        "styles/huluStyles.css"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "packages/d3.v5.min.js",
        "huluContentScript.js"
      ]
    },
    {
      "matches": [
        "https://*.disneyplus.com/*"
      ],
      "css": [
        "styles/disneyPlusStyles.css"
      ],
      "js": [
        "packages/jquery-3.1.1.min.js",
        "packages/d3.v5.min.js",
        "disneyPlusContentScript.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}