Letterboxd Movie Assistant

Shows a page action for imdb/rotten tomatoes film pages to go to the letterboxd equivalant

Что такое Letterboxd Movie Assistant?

Letterboxd Movie Assistant - это расширение Chrome, разработанное ludovicodigital, и его основная функция - "Shows a page action for imdb/rotten tomatoes film pages to go to the letterboxd equivalant".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Adds an icon in the address bar that comes up on Imdb and Rotten Tomatoes film pages. By pressing this icon a new tab will open that goes to the letterboxd film page.

*Note: This extension is not made by the letterboxd team but someone who is a big fan of their site!

Update 4/17/15 - Fixed the bug with Rotten Tomatoes so its now working again from there!
Update 1/13/19 - Extension still works for IMDB but no longer works with Rotten Tomatoes since they removed their public API.                    

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

Название Letterboxd Movie Assistant Letterboxd Movie Assistant
ID dlicmihnogpoemhcegbnhbmncbkoidjo
Официальный URL https://chromewebstore.google.com/detail/letterboxd-movie-assistan/dlicmihnogpoemhcegbnhbmncbkoidjo
Описание Shows a page action for imdb/rotten tomatoes film pages to go to the letterboxd equivalant
Размер файла 127 KB
Количество установок 2,103
Текущая Версия 0.2
Последнее Обновление 2019-01-14
Дата публикации 2019-01-13
Рейтинг 4.54/5 Всего 24 оценок
Разработчик ludovicodigital
Тип оплаты free
Официальный сайт расширения http://letterboxd.com/tcrosini/
URL страницы помощи http://letterboxd.com/tcrosini/list/letterboxd-movie-assistant-chrome-extension/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Letterboxd Movie Assistant",
    "version": "0.2",
    "description": "Shows a page action for imdb\/rotten tomatoes film pages to go to the letterboxd equivalant",
    "background": {
        "scripts": [
            "background.js",
            "jquery.min.js"
        ]
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Go to this films letterboxd page!"
    },
    "permissions": [
        "tabs",
        "http:\/\/api.rottentomatoes.com\/api\/public\/v1.0*",
        "http:\/\/www.rottentomatoes.com\/*",
        "http:\/\/www.imdb.com\/*",
        "http:\/\/letterboxd.com\/*"
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}