More Ratings on Letterboxd

See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd

什么是More Ratings on Letterboxd?

More Ratings on Letterboxd是由UofT Student 2020开发的Chrome扩展程序,该扩展的主要功能是“See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd”。

扩展截图

screenshot
screenshot

下载More Ratings on Letterboxd扩展crx文件

下载More Ratings on Letterboxd扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 More Ratings on Letterboxd More Ratings on Letterboxd
ID daohigojkjlijcphfhelkcepldnenike
官方URL https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike
简介 See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
文件大小 129 KB
安装次数 266
当前版本 1.0.0
更新时间 2021-09-02
上架时间 2021-09-02
评分 5.00/5 共7次评分
开发者 UofT Student 2020
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/EKarton/More-Ratings-on-Letterboxd
帮助页面URL https://github.com/EKarton/More-Ratings-on-Letterboxd/issues
支持的语言 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"
    }
}