More Ratings on Letterboxd

See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd

Wat is More Ratings on Letterboxd?

More Ratings on Letterboxd is een Chrome-extensie ontwikkeld door UofT Student 2020, en de belangrijkste functie is "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie More Ratings on Letterboxd

Download More Ratings on Letterboxd-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam More Ratings on Letterboxd More Ratings on Letterboxd
ID daohigojkjlijcphfhelkcepldnenike
Officiële URL https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike
Beschrijving See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
Bestandsgrootte 129 KB
Aantal Installaties 266
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-09-02
Publicatiedatum 2021-09-02
Beoordeling 5.00/5 Totaal 7 Beoordelingen
Ontwikkelaar UofT Student 2020
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/EKarton/More-Ratings-on-Letterboxd
Help Pagina-URL https://github.com/EKarton/More-Ratings-on-Letterboxd/issues
Ondersteunde Talen 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"
    }
}