Letterboxd Rotten Tomatoes Addon

Adds Rotten Tomatoes features to Letterboxd.com

Что такое Letterboxd Rotten Tomatoes Addon?

Letterboxd Rotten Tomatoes Addon - это расширение Chrome, разработанное WilliamWelsh, и его основная функция - "Adds Rotten Tomatoes features to Letterboxd.com".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Letterboxd Rotten Tomatoes Addon

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

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

                        This extension will offer a button on Letterboxd film pages that directs you to the Rotten Tomatoes equivalent. It also shows the score, and icon, under the title on film pages.                    

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

Название Letterboxd Rotten Tomatoes Addon Letterboxd Rotten Tomatoes Addon
ID gbagfhlcandjadfocmenciejcgncjmfd
Официальный URL https://chromewebstore.google.com/detail/letterboxd-rotten-tomatoe/gbagfhlcandjadfocmenciejcgncjmfd
Описание Adds Rotten Tomatoes features to Letterboxd.com
Размер файла 22.73 KB
Количество установок 283
Текущая Версия 1.9
Последнее Обновление 2019-01-22
Дата публикации 2019-01-21
Рейтинг 3.60/5 Всего 10 оценок
Разработчик WilliamWelsh
Тип оплаты free
Официальный сайт расширения https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon
URL страницы помощи https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Letterboxd Rotten Tomatoes Addon",
    "version": "1.9",
    "description": "Adds Rotten Tomatoes features to Letterboxd.com",
    "permissions": [
        "https:\/\/www.omdbapi.com\/*",
        "https:\/\/www.rottentomatoes.com\/m\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}