More Ratings on Letterboxd

See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd

More Ratings on Letterboxd là gì?

More Ratings on Letterboxd là một tiện ích mở rộng Chrome được phát triển bởi UofT Student 2020, và tính năng chính của nó là "See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng More Ratings on Letterboxd

Tải xuống các tệp mở rộng More Ratings on Letterboxd dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên More Ratings on Letterboxd More Ratings on Letterboxd
ID daohigojkjlijcphfhelkcepldnenike
URL Chính Thức https://chromewebstore.google.com/detail/more-ratings-on-letterbox/daohigojkjlijcphfhelkcepldnenike
Mô tả See IMDB, RottenTomatoes, and Metacritic ratings on Letterboxd
Kích Thước Tệp 129 KB
Số Lần Cài Đặt 266
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-09-02
Ngày Phát Hành 2021-09-02
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển UofT Student 2020
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/EKarton/More-Ratings-on-Letterboxd
URL Trang Trợ Giúp https://github.com/EKarton/More-Ratings-on-Letterboxd/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}