Overratd

A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating

Cos'è Overratd?

Overratd è un'estensione di Chrome sviluppata da garretlowe, e la sua funzione principale è "A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Overratd

Scarica i file di estensione Overratd 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

                        Overratd adds histograms to Letterboxd lists which display the list owner's ratings for movies in the list.

Currently, the extension is limited to 100 movies at a time. This is because it reads the list of movies from the current page and Letterboxd can only display up to 100 movies per list page.

Additionally, the tooltips which display when hovering over bars do not currently work as you would expect them to based on the profile histograms.

Overratd is licensed under GPL-3.0 and is fully open-source: https://github.com/garretlowe/overratd                    

Informazioni di Base sull'Estensione

Nome Overratd Overratd
ID lllkjhpcabokchmdinbmhgmnnkgoehhf
URL Ufficiale https://chromewebstore.google.com/detail/overratd/lllkjhpcabokchmdinbmhgmnnkgoehhf
Descrizione A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating
Dimensione del File 12.16 KB
Conteggio Installazioni 56
Versione Corrente 1.0
Ultimo Aggiornamento 2022-08-27
Data di Pubblicazione 2022-08-26
Sviluppatore garretlowe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/garretlowe/overratd
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Overratd",
    "author": "Garret Lowe",
    "description": "A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/*\/list\/*\/"
            ],
            "js": [
                "overratd.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/overratd16.png",
        "32": "\/images\/overratd32.png",
        "48": "\/images\/overratd48.png",
        "128": "\/images\/overratd128.png"
    }
}