Letterboxd List Search

Letterboxd List Search

Allows you to search lists on letterboxd. Works better on smaller lists (< 2000) but will work on any list if you let the page load

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Letterboxd List Search",
  "description": "Allows you to search lists on letterboxd. Works better on smaller lists (< 2000) but will work on any list if you let the page load",
  "icons": {
    "16": "./logo/searchlogo16.png",
    "32": "./logo/searchlogo32.png",
    "48": "./logo/searchlogo48.png",
    "128": "./logo/searchlogo128.png"
  },
  "version": "1.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://letterboxd.com/*/list/*"
      ],
      "exclude_matches": [
        "https://letterboxd.com/*/list/*/page*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}