Letterboxd Services

Letterboxd Services

Letterboxd extension that provides you torrents for movies.

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 Services",
  "description": "Letterboxd extension that provides you torrents for movies.",
  "version": "0.6",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "https://letterboxd.com/film/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://letterboxd.com/film/*"
      ],
      "js": [
        "src/content.js",
        "src/services.js"
      ]
    }
  ]
}