More Ratings on Letterboxd

See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd

Cos'è More Ratings on Letterboxd?

More Ratings on Letterboxd è un'estensione di Chrome sviluppata da UofT Student 2020, e la sua funzione principale è "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione More Ratings on Letterboxd

Scarica i file di estensione More Ratings on Letterboxd 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

                        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!                    

Informazioni di Base sull'Estensione

Nome More Ratings on Letterboxd More Ratings on Letterboxd
ID daohigojkjlijcphfhelkcepldnenike
URL Ufficiale https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike
Descrizione See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
Dimensione del File 129 KB
Conteggio Installazioni 266
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-09-02
Data di Pubblicazione 2021-09-02
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore UofT Student 2020
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/EKarton/More-Ratings-on-Letterboxd
URL della Pagina di Aiuto https://github.com/EKarton/More-Ratings-on-Letterboxd/issues
Lingue Supportate 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"
    }
}