Netflix IMDB lookup

This extension shows the imdb rating for a given movie on netflix

什么是Netflix IMDB lookup?

Netflix IMDB lookup是由jdh开发的Chrome扩展程序,该扩展的主要功能是“This extension shows the imdb rating for a given movie on netflix”。

扩展截图

screenshot

下载Netflix IMDB lookup扩展crx文件

下载Netflix IMDB lookup扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This simple extension leverages the OMDB api (http://www.omdbapi.com) to show you the IMDB rating for a given movie as you browse to it on Netflix. This makes it easy to see movies worth watching without having to jump over to IMDB to see the rating.                    

扩展基本信息

名称 Netflix IMDB lookup Netflix IMDB lookup
ID jlnffkfebfjciachomeienhjladjhloi
官方URL https://chrome.google.com/webstore/detail/netflix-imdb-lookup/jlnffkfebfjciachomeienhjladjhloi
简介 This extension shows the imdb rating for a given movie on netflix
文件大小 277 KB
安装次数 52
当前版本 1.0
更新时间 2015-01-07
上架时间 2015-01-07
评分 3.00/5 共2次评分
开发者 jdh
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix IMDB lookup",
    "description": "This extension shows the imdb rating for a given movie on netflix",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.netflix.com\/WiMovie\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "imdb.png"
    ],
    "icons": {
        "128": "icon_128.png"
    }
}