Movie Ratings

Retrieve movie ratings from Rotten Tomatoes.

Movie Ratings là gì?

Movie Ratings là một tiện ích mở rộng Chrome được phát triển bởi Ronak Patel, và tính năng chính của nó là "Retrieve movie ratings from Rotten Tomatoes.".

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

screenshot

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

Tải xuống các tệp mở rộng Movie Ratings 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

                        Movie Ratings lets you view the Rotten Tomatoes and IMDb ratings for a movie. All you have to do is highlight the name of a movie, right click, and select "Get Movie Rating" (you can also right click on a link).

After installing the extension the tabs currently opened will need to be reloaded.                    

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

Tên Movie Ratings Movie Ratings
ID pfmcppclannbbilgigjlodcjkkohjiom
URL Chính Thức https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom
Mô tả Retrieve movie ratings from Rotten Tomatoes.
Kích Thước Tệp 80.87 KB
Số Lần Cài Đặt 194
Phiên Bản Hiện Tại 1.6.2
Cập Nhật Lần Cuối 2015-01-18
Ngày Phát Hành 2015-01-18
Đánh Giá 3.00/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Ronak Patel
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Movie Ratings",
    "version": "1.6.2",
    "description": "Retrieve movie ratings from Rotten Tomatoes.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "listeners.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "display.html",
        "display.js",
        "config.js",
        "listeners.js",
        "lib\/*.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/rt-fetcher.herokuapp.com; object-src 'self'"
}