IMDB Ratings Viewer

This extension will display the ratings of the selected text

IMDB Ratings Viewer là gì?

IMDB Ratings Viewer là một tiện ích mở rộng Chrome được phát triển bởi ahmar.siddiqui, và tính năng chính của nó là "This extension will display the ratings of the selected text".

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

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

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

                        Get IMDB Rating of a selected movie

> color coded according to the ratings
> will match keywords with similar words or small typos                    

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

Tên IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
URL Chính Thức https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Mô tả This extension will display the ratings of the selected text
Kích Thước Tệp 26.64 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2016-08-06
Ngày Phát Hành 2016-08-06
Đánh Giá 2.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển ahmar.siddiqui
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IMDB Ratings Viewer",
    "description": "This extension will display the ratings of the selected text",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "activeTab",
        "background",
        "http:\/\/*\/",
        "https:\/\/*\/",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ]
}