Letterboxd Hours and Minutes
Transforms the minutes of a movie to a more logical hours and minutes
什么是Letterboxd Hours and Minutes?
Letterboxd Hours and Minutes是由koenhagen开发的Chrome扩展程序,该扩展的主要功能是“Transforms the minutes of a movie to a more logical hours and minutes”。
扩展截图
下载Letterboxd Hours and Minutes扩展crx文件
下载Letterboxd Hours and Minutes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension changes the minutes of a movie to a more logical hours and minutes to be more intuitive. Giving the hours is much more useful for the user that the minutes if the movie is over 60 minutes long. Letterboxd lists movie length only by the minutes. This can sometimes by confusing as you often have to calculate the length in hours yourself.
扩展基本信息
名称 | Letterboxd Hours and Minutes |
ID | ibdokjffdhclokoedacfelcihpoplbkf |
官方URL | https://chromewebstore.google.com/detail/letterboxd-hours-and-minu/ibdokjffdhclokoedacfelcihpoplbkf |
简介 | Transforms the minutes of a movie to a more logical hours and minutes |
文件大小 | 8.21 KB |
安装次数 | 577 |
当前版本 | 1.0 |
更新时间 | 2021-12-25 |
上架时间 | 2021-12-24 |
评分 | 5.00/5 共7次评分 |
开发者 | koenhagen |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
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" } } |