Letterboxd Extras

Displays additional scores on Letterboxd (IMDB, Rotten Tomatoes, Metacritic).

Letterboxd Extras क्या है?

Letterboxd Extras duncanlangdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays additional scores on Letterboxd (IMDB, Rotten Tomatoes, Metacritic)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Letterboxd Extras एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Adds some additional features to Letterboxd

Features:
- Displays ratings on film pages from:
  - IMDb
  - Rotten Tomatoes
  - Metacritic
  - MyAnimeList
  - AniList
  - CinemaScore
  - SensCritique (disabled by default)
  - MUBI (disabled by default)
  - FilmAffinity (disabled by default)
- Adds a Wikipedia-like info box on people pages for the birth dates, death dates, and years active
- Adds links to the enabled rating sites and BoxOfficeMojo 
- Adds MPA film rating next to release year
- Adds the full release date (wide release) on hover of the release year
- Adds film duration converted to hours and minutes on hover of the duration
- Adds the budget and box office numbers (US and Worldwide) in the details tab
- Adds option to default search to film only


Source Code available at Github:
https://github.com/duncanlang/Letterboxd-Extras

Please submit and bugs or suggestions on the Github issues page.
https://github.com/duncanlang/Letterboxd-Extras/issues                    

एक्सटेंशन की मूल जानकारी

नाम Letterboxd Extras Letterboxd Extras
ID edhldpamlnkpekapihiolppcdppgeice
आधिकारिक URL https://chromewebstore.google.com/detail/letterboxd-extras/edhldpamlnkpekapihiolppcdppgeice
विवरण Displays additional scores on Letterboxd (IMDB, Rotten Tomatoes, Metacritic).
फ़ाइल का आकार 142 KB
स्थापना संख्या 2,200
वर्तमान संस्करण 3.11.0
अंतिम अपडेट 2024-03-03
प्रकाशन तिथि 2022-09-03
रेटिंग 4.93/5 कुल 30 रेटिंग्स
डेवलपर duncanlangdev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/duncanlang/Letterboxd-Extras
सहायता पृष्ठ URL https://github.com/duncanlang/Letterboxd-Extras/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Letterboxd Extras",
    "description": "Displays additional scores on Letterboxd (IMDB, Rotten Tomatoes, Metacritic).",
    "version": "3.11.0",
    "minimum_chrome_version": "88",
    "action": {
        "default_title": "Letterboxd Extras Settings",
        "default_popup": "options.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.imdb.com\/*",
        "https:\/\/letterboxd.com\/*",
        "https:\/\/*.imdb.com\/*",
        "https:\/\/www.rottentomatoes.com\/*",
        "https:\/\/www.boxofficemojo.com\/*",
        "https:\/\/webapp.cinemascore.com\/*",
        "https:\/\/query.wikidata.org\/*",
        "https:\/\/www.metacritic.com\/*",
        "https:\/\/api.jikan.moe\/*",
        "https:\/\/graphql.anilist.co\/*"
    ],
    "optional_host_permissions": [
        "https:\/\/api.mubi.com\/*",
        "https:\/\/apollo.senscritique.com\/*",
        "https:\/\/*.filmaffinity.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/*"
            ],
            "js": [
                "polyfill.js",
                "letterboxd-extras.user.js",
                "jquery-3.6.0.min.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/mal-logo.png",
                "images\/sens-logo.png"
            ],
            "matches": [
                "https:\/\/letterboxd.com\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}