Awards List on Letterboxd

This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.

Cos'è Awards List on Letterboxd?

Awards List on Letterboxd è un'estensione di Chrome sviluppata da imdb2letterboxd, e la sua funzione principale è "This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Awards List on Letterboxd

Scarica i file di estensione Awards List on Letterboxd in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.

UPDATE April 2023
- Fixed for new layout changes on IMDb on the awards page
- Best film icon next to the film title now includes other categories such as International Film, Documentary Feature and short film categories                    

Informazioni di Base sull'Estensione

Nome Awards List on Letterboxd Awards List on Letterboxd
ID nkpchhjoclfpimjoceongdiaaldgcemh
URL Ufficiale https://chromewebstore.google.com/detail/awards-list-on-letterboxd/nkpchhjoclfpimjoceongdiaaldgcemh
Descrizione This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.
Dimensione del File 93.84 KB
Conteggio Installazioni 211
Versione Corrente 0.5
Ultimo Aggiornamento 2023-04-28
Data di Pubblicazione 2023-03-13
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore imdb2letterboxd
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Awards List on Letterboxd",
    "version": "0.5",
    "description": "This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.",
    "icons": {
        "48": "icons\/48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*"
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/xss.js",
                "js\/script.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.imdb.com\/*"
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/xss.js",
                "js\/script.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/reload-letterboxd.js",
                "svg\/bafta_award.svg",
                "svg\/generic_film_award.svg",
                "svg\/oscar_awards.svg",
                "svg\/oscar_awards_nom.svg",
                "svg\/golden_globes.svg"
            ],
            "matches": [
                "https:\/\/letterboxd.com\/*"
            ]
        }
    ]
}