Letterboxd Top 2000

Shows the ranking of each of the top 2000 highest rated movies on their respective page.

Что такое Letterboxd Top 2000?

Letterboxd Top 2000 - это расширение Chrome, разработанное koenhagen, и его основная функция - "Shows the ranking of each of the top 2000 highest rated movies on their respective page.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Letterboxd Top 2000

Скачайте файлы расширений Letterboxd Top 2000 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        When a movie ranks among the 2000 highest rated movies according to Letterboxd, a golden crown icon will show below the poster together with the movie's rank. This extends the top 250 that is normally only shown.

The extension also adds a fire icon to movies that are part of the top 2000 most popular movies according to Letterboxd.

I am not a Letterboxd developer or associated with them in any way.                    

Основная информация о расширении

Название Letterboxd Top 2000 Letterboxd Top 2000
ID akajmboonlckanooginhfnpafjjnimko
Официальный URL https://chromewebstore.google.com/detail/letterboxd-top-2000/akajmboonlckanooginhfnpafjjnimko
Описание Shows the ranking of each of the top 2000 highest rated movies on their respective page.
Размер файла 8.67 KB
Количество установок 502
Текущая Версия 2.1
Последнее Обновление 2021-12-25
Дата публикации 2021-06-07
Рейтинг 5.00/5 Всего 7 оценок
Разработчик koenhagen
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Letterboxd Top 2000",
    "description": "Shows the ranking of each of the top 2000 highest rated movies on their respective page.",
    "version": "2.1",
    "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"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "fire.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}