Plexboxd

View letterboxd ratings for your movies on plex.

Co to jest Plexboxd?

Plexboxd to rozszerzenie Chrome opracowane przez lennysgarage42, a jego główną funkcją jest „View letterboxd ratings for your movies on plex.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Plexboxd

Pobierz pliki rozszerzeń Plexboxd 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

                        Using Plex on either the web via app.plex.tv or local, you can easily see the corresponding letterboxd rating for your movies right on the films page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Plexboxd Plexboxd
ID nofkoinidebfleimhjmilhhbbecaalhh
Oficjalny URL https://chromewebstore.google.com/detail/plexboxd/nofkoinidebfleimhjmilhhbbecaalhh
Opis View letterboxd ratings for your movies on plex.
Rozmiar pliku 58.19 KB
Liczba instalacji 79
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2023-11-19
Data Publikacji 2023-06-07
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper lennysgarage42
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lennysgarage/Plexboxd
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Plexboxd",
    "version": "1.1.0",
    "description": "View letterboxd ratings for your movies on plex.",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "128": "images\/icon-128.png",
        "192": "images\/icon-192.png",
        "512": "images\/icon-512.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/letterboxd-decal-dots-pos-rgb-500px.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "letterboxd.css"
            ],
            "matches": [
                "https:\/\/app.plex.tv\/desktop\/*",
                "http:\/\/127.0.0.1:32400\/web\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "host_permissions": [
        "https:\/\/letterboxd.com\/*"
    ]
}