IMDB Ratings Viewer

This extension will display the ratings of the selected text

什麼是IMDB Ratings Viewer?

IMDB Ratings Viewer是由ahmar.siddiqui開發的Chrome擴展程式,該擴展的主要功能是“This extension will display the ratings of the selected text”。

擴展截圖

下載IMDB Ratings Viewer擴展crx文件

下載IMDB Ratings Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Get IMDB Rating of a selected movie

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

擴展基本資訊

名稱 IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
官方網址 https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
簡介 This extension will display the ratings of the selected text
檔案大小 26.64 KB
安裝次數 55
目前版本 1.2
更新時間 2016-08-06
上架時間 2016-08-06
評分 2.60/5 共 5 次評分
開發者 ahmar.siddiqui
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        }
    ]
}