Overratd

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

Qu'est-ce que Overratd ?

Overratd est une extension Chrome développée par garretlowe, et sa fonction principale est "A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Overratd

Téléchargez les fichiers d'extension Overratd au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Overratd Overratd
ID lllkjhpcabokchmdinbmhgmnnkgoehhf
URL Officiel https://chromewebstore.google.com/detail/overratd/lllkjhpcabokchmdinbmhgmnnkgoehhf
Description A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating
Taille du Fichier 12.16 KB
Nombre d'Installations 56
Version Actuelle 1.0
Dernière Mise à Jour 2022-08-27
Date de Publication 2022-08-26
Développeur garretlowe
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/garretlowe/overratd
Langues Prises en Charge 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"
    }
}