Letterboxd Rotten Tomatoes Addon

Adds Rotten Tomatoes features to Letterboxd.com

Letterboxd Rotten Tomatoes Addon là gì?

Letterboxd Rotten Tomatoes Addon là một tiện ích mở rộng Chrome được phát triển bởi WilliamWelsh, và tính năng chính của nó là "Adds Rotten Tomatoes features to Letterboxd.com".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Letterboxd Rotten Tomatoes Addon

Tải xuống các tệp mở rộng Letterboxd Rotten Tomatoes Addon 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 extension will offer a button on Letterboxd film pages that directs you to the Rotten Tomatoes equivalent. It also shows the score, and icon, under the title on film pages.                    

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

Tên Letterboxd Rotten Tomatoes Addon Letterboxd Rotten Tomatoes Addon
ID gbagfhlcandjadfocmenciejcgncjmfd
URL Chính Thức https://chromewebstore.google.com/detail/letterboxd-rotten-tomatoe/gbagfhlcandjadfocmenciejcgncjmfd
Mô tả Adds Rotten Tomatoes features to Letterboxd.com
Kích Thước Tệp 22.73 KB
Số Lần Cài Đặt 283
Phiên Bản Hiện Tại 1.9
Cập Nhật Lần Cuối 2019-01-22
Ngày Phát Hành 2019-01-21
Đánh Giá 3.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển WilliamWelsh
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon
URL Trang Trợ Giúp https://github.com/WilliamWelsh/Letterboxd-Rotten-Tomatoes-Addon
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Letterboxd Rotten Tomatoes Addon",
    "version": "1.9",
    "description": "Adds Rotten Tomatoes features to Letterboxd.com",
    "permissions": [
        "https:\/\/www.omdbapi.com\/*",
        "https:\/\/www.rottentomatoes.com\/m\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}