Plexboxd

View letterboxd ratings for your movies on plex.

Vad är Plexboxd?

Plexboxd är en Chrome-tillägg utvecklad av lennysgarage42, och dess huvudfunktion är "View letterboxd ratings for your movies on plex.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Plexboxd-förlängningens CRX-fil

Ladda ner Plexboxd-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Plexboxd Plexboxd
ID nofkoinidebfleimhjmilhhbbecaalhh
Officiell webbadress https://chromewebstore.google.com/detail/plexboxd/nofkoinidebfleimhjmilhhbbecaalhh
Beskrivning View letterboxd ratings for your movies on plex.
Filstorlek 58.19 KB
Antal Installationer 79
Aktuell Version 1.1.0
Senast Uppdaterad 2023-11-19
Publiceringsdatum 2023-06-07
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare lennysgarage42
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lennysgarage/Plexboxd
Stödda Språk 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\/*"
    ]
}