Letterboxd on Netflix

Letterboxd on Netflix

Letterboxd Ratings embedded in Netflix cards

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Letterboxd on Netflix",
  "description": "Letterboxd Ratings embedded in Netflix cards",
  "version": "0.1",
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/boxd-logo-dark-trans.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://www.netflix.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "host_permissions": [
    "https://www.letterboxd.com/*",
    "https://letterboxd.com/*",
    "https://netflix.com/*",
    "https://www.netflix.com/*"
  ]
}