Letterboxd Rotten Tomatoes Addon

Adds Rotten Tomatoes features to Letterboxd.com

Co to jest Letterboxd Rotten Tomatoes Addon?

Letterboxd Rotten Tomatoes Addon to rozszerzenie Chrome opracowane przez WilliamWelsh, a jego główną funkcją jest „Adds Rotten Tomatoes features to Letterboxd.com”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Letterboxd Rotten Tomatoes Addon

Pobierz pliki rozszerzeń Letterboxd Rotten Tomatoes Addon w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Letterboxd Rotten Tomatoes Addon Letterboxd Rotten Tomatoes Addon
ID gbagfhlcandjadfocmenciejcgncjmfd
Oficjalny URL https://chromewebstore.google.com/detail/letterboxd-rotten-tomatoe/gbagfhlcandjadfocmenciejcgncjmfd
Opis Adds Rotten Tomatoes features to Letterboxd.com
Rozmiar pliku 22.73 KB
Liczba instalacji 283
Aktualna Wersja 1.9
Ostatnia Aktualizacja 2019-01-22
Data Publikacji 2019-01-21
Ocena 3.60/5 Łącznie 10 Oceny
Deweloper WilliamWelsh
Typ Płatności free
Strona Rozszerzenia https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon
Adres URL Strony Pomocy https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon
Obsługiwane Języki 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"
        }
    ]
}