Movie Tracker List

Movie Tracker List

Receive alerts when movies on your watchlist become available online to watch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Movie Tracker List",
  "version": "3.1",
  "description": "Receive alerts when movies on your watchlist become available online to watch.",
  "host_permissions": [
    "https://*.imdb.com/*",
    "https://www.omdbapi.com/*",
    "https://torrentio.strem.fun/*"
  ],
  "permissions": [
    "identity",
    "storage",
    "notifications",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.imdb.com/title/tt*/*"
      ],
      "js": [
        "addfromIMDB.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}