Easy IMDB Info

Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.

什么是Easy IMDB Info?

Easy IMDB Info是由Sridhar PG开发的Chrome扩展程序,该扩展的主要功能是“Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.”。

扩展截图

screenshot

下载Easy IMDB Info扩展crx文件

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

扩展使用说明

                        Adds rating(both from IMDB and RottenTomatoes.com) and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.

For any bugs or suggestions, please mail to [email protected]                    

扩展基本信息

名称 Easy IMDB Info Easy IMDB Info
ID egnjfklhakfobdcbmhjmbdgbhaafibfj
官方URL https://chromewebstore.google.com/detail/easy-imdb-info/egnjfklhakfobdcbmhjmbdgbhaafibfj
简介 Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.
文件大小 95.1 KB
安装次数 225
当前版本 1.3
更新时间 2012-11-18
上架时间 2012-11-17
评分 3.54/5 共13次评分
开发者 Sridhar PG
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy IMDB Info",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Adds rating and duration just below the movie name in Actors\/Directors page. Also displays the plot of the movie as tooltip.",
    "icons": {
        "18": "imdb48.png",
        "24": "imdb48.png",
        "48": "imdb48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/name\/*"
            ],
            "js": [
                "content\/imdbquery.js",
                "content\/jquery.js"
            ],
            "css": [
                "content\/imdbquery.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/www.imdb.com\/",
        "http:\/\/www.omdbapi.com\/"
    ]
}