Where to watch - Playpilot/IMDb

Where to watch - Playpilot/IMDb

Adds a link on a movie's IMDb page where it is possible to see where to watch it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Where to watch - Playpilot/IMDb",
  "description": "Adds a link on a movie's IMDb page where it is possible to see where to watch it.",
  "version": "0.2.2",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "host_permissions": [
    "https://atlas.playpilot.com/api/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.imdb.com/title/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}