Mubi Film Synopsis

Mubi Film Synopsis

Make each film synopsis available on the homepage without having to open the link

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mubi Film Synopsis",
  "version": "1.0.0",
  "description": "Make each film synopsis available on the homepage without having to open the link",
  "action": {
    "default_popup": "/popup/popup.html"
  },
  "icons": {
    "512": "images/icon-512.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "https://mubi.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "workers/service-worker.js",
    "type": "module"
  },
  "host_permissions": [
    "https://www.mubi.com/films/*"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/utils.js",
        "scripts/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://mubi.com/*"
      ]
    }
  ]
}