Letterboxd Hours and Minutes

Letterboxd Hours and Minutes

Transforms the minutes of a movie to a more logical hours and minutes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Letterboxd Hours and Minutes",
  "description": "Transforms the minutes of a movie to a more logical hours and minutes",
  "version": "1.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://letterboxd.com/film/*",
        "http://letterboxd.com/film/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "lb16.png",
    "48": "lb48.png",
    "128": "lb128.png"
  }
}