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 - это расширение Chrome, разработанное koenhagen, и его основная функция - "Transforms the minutes of a movie to a more logical hours and minutes".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Letterboxd Hours and Minutes

Скачайте файлы расширений 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 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"
    }
}