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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Letterboxd Hours and Minutes 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}