Letterboxd Top 2000

Shows the ranking of each of the top 2000 highest rated movies on their respective page.

Was ist Letterboxd Top 2000?

Letterboxd Top 2000 ist eine Chrome-Erweiterung, die von koenhagen entwickelt wurde, und ihr Hauptmerkmal ist "Shows the ranking of each of the top 2000 highest rated movies on their respective page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Letterboxd Top 2000-Erweiterungs-CRX-Datei herunterladen

Laden Sie Letterboxd Top 2000-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        When a movie ranks among the 2000 highest rated movies according to Letterboxd, a golden crown icon will show below the poster together with the movie's rank. This extends the top 250 that is normally only shown.

The extension also adds a fire icon to movies that are part of the top 2000 most popular movies according to Letterboxd.

I am not a Letterboxd developer or associated with them in any way.                    

Grundlegende Informationen zur Erweiterung

Name Letterboxd Top 2000 Letterboxd Top 2000
ID akajmboonlckanooginhfnpafjjnimko
Offizielle URL https://chromewebstore.google.com/detail/letterboxd-top-2000/akajmboonlckanooginhfnpafjjnimko
Beschreibung Shows the ranking of each of the top 2000 highest rated movies on their respective page.
Dateigröße 8.67 KB
Installationsanzahl 502
Aktuelle Version 2.1
Letztes Update 2021-12-25
Veröffentlichungsdatum 2021-06-07
Bewertung 5.00/5 Insgesamt 7 Bewertungen
Entwickler koenhagen
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Letterboxd Top 2000",
    "description": "Shows the ranking of each of the top 2000 highest rated movies on their respective page.",
    "version": "2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*",
                "http:\/\/letterboxd.com\/film\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "lb16.png",
        "48": "lb48.png",
        "128": "lb128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "fire.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}