More Ratings on Letterboxd

See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd

Qu'est-ce que More Ratings on Letterboxd ?

More Ratings on Letterboxd est une extension Chrome développée par UofT Student 2020, et sa fonction principale est "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension More Ratings on Letterboxd

Téléchargez les fichiers d'extension More Ratings on Letterboxd 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

                        This chrome extension will fetch and embed IMDB, Rotten Tomatoes, and Metacritic ratings right onto the Letterboxd film page. You can also show and hide ratings right on the chrome extension.

Source code is at https://github.com/EKarton/More-Ratings-on-Letterboxd. Open contributions to the source code are welcome. Thank you!                    

Informations de Base sur l'Extension

Nom More Ratings on Letterboxd More Ratings on Letterboxd
ID daohigojkjlijcphfhelkcepldnenike
URL Officiel https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike
Description See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
Taille du Fichier 129 KB
Nombre d'Installations 266
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-09-02
Date de Publication 2021-09-02
Évaluation 5.00/5 Total 7 Évaluations
Développeur UofT Student 2020
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/EKarton/More-Ratings-on-Letterboxd
URL de la Page d'Aide https://github.com/EKarton/More-Ratings-on-Letterboxd/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "More Ratings on Letterboxd",
    "description": "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd",
    "version": "1.0.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*"
            ],
            "css": [
                "content-scripts\/styles.css"
            ],
            "js": [
                "content-scripts\/index.js"
            ]
        }
    ],
    "action": {
        "default_title": "More Ratings on Letterboxd",
        "default_popup": "popup\/index.html",
        "default_icon": {
            "16": "\/assets\/icons\/icon16.png",
            "32": "\/assets\/icons\/icon32.png",
            "48": "\/assets\/icons\/icon48.png",
            "128": "\/assets\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/assets\/icons\/icon16.png",
        "32": "\/assets\/icons\/icon32.png",
        "48": "\/assets\/icons\/icon48.png",
        "128": "\/assets\/icons\/icon128.png"
    }
}