Tagger for Letterboxd

Tagger for Letterboxd

Tag your Letterboxd reviews with genres imported from TMDb!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tagger for Letterboxd",
  "short_name": "Tagger",
  "description": "Tag your Letterboxd reviews with genres imported from TMDb!",
  "version": "2.0",
  "host_permissions": [
    "*://*.letterboxd.com/"
  ],
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "./scripts/jquery-2.2.0.min.js",
        "./scripts/jquery.jnotify.min.js",
        "./scripts/tagger.js"
      ],
      "matches": [
        "*://*.letterboxd.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "./scripts/badge.js"
      ],
      "matches": [
        "*://*.letterboxd.com/wosps/"
      ],
      "run_at": "document_end"
    }
  ]
}