Awards List on Letterboxd

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

What is Awards List on Letterboxd?

Awards List on Letterboxd is a Chrome extension developed by imdb2letterboxd, and its main feature is "This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.".

Extension Screenshots

screenshot
screenshot

Download Awards List on Letterboxd Extension CRX File

Download Awards List on Letterboxd extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Awards List on Letterboxd Awards List on Letterboxd
ID nkpchhjoclfpimjoceongdiaaldgcemh
Official URL https://chromewebstore.google.com/detail/awards-list-on-letterboxd/nkpchhjoclfpimjoceongdiaaldgcemh
Description This addon makes available awards lists on Letterboxd film pages. It also marks oscar winning crew members.
File Size 93.84 KB
Installation Count 211
Current Version 0.5
Last Updated 2023-04-28
Publish Date 2023-03-13
Rating 4.00/5 Total 2 Ratings
Developer imdb2letterboxd
Email [email protected]
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}