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
官方網址 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"
    }
}