More Ratings on Letterboxd

More Ratings on Letterboxd

See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "More Ratings on Letterboxd",
  "description": "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd",
  "version": "1.0.0",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://letterboxd.com/film/*"
      ],
      "css": [
        "content-scripts/styles.css"
      ],
      "js": [
        "content-scripts/index.js"
      ]
    }
  ],
  "action": {
    "default_title": "More Ratings on Letterboxd",
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "/assets/icons/icon16.png",
      "32": "/assets/icons/icon32.png",
      "48": "/assets/icons/icon48.png",
      "128": "/assets/icons/icon128.png"
    }
  },
  "icons": {
    "16": "/assets/icons/icon16.png",
    "32": "/assets/icons/icon32.png",
    "48": "/assets/icons/icon48.png",
    "128": "/assets/icons/icon128.png"
  }
}