WikiToIMDB

Adds IMDB rating to the top of Wikipedia movie articles.

什么是WikiToIMDB?

WikiToIMDB是由Jamedjo开发的Chrome扩展程序,该扩展的主要功能是“Adds IMDB rating to the top of Wikipedia movie articles.”。

扩展截图

screenshot
screenshot

下载WikiToIMDB扩展crx文件

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

扩展使用说明

                        Adds an IMDB rating star in the top right of Wikipedia movie pages.

-Works on any article which links to IMDB as an 'External Link'
-Fetches ratings from OMDBapi.com
-Clicking the rating star takes you to IMDB!

Wiki-to-IMDB source code available at https://github.com/Jamedjo/chrome-wiki-to-imdb

Some other IMDB extensions I use: http://njoin.co.uk/grains/50f94cc06decf9f459000003                    

扩展基本信息

名称 WikiToIMDB WikiToIMDB
ID emgoinndehfmamfphfgpgojbencbjeeh
官方URL https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh
简介 Adds IMDB rating to the top of Wikipedia movie articles.
文件大小 61.78 KB
安装次数 35
当前版本 0.1.2
更新时间 2013-01-26
上架时间 2013-01-26
评分 3.00/5 共4次评分
开发者 Jamedjo
付费类型 free
扩展官网 https://github.com/Jamedjo/chrome-wiki-to-imdb
支持的语言 en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WikiToIMDB",
    "version": "0.1.2",
    "description": "Adds IMDB rating to the top of Wikipedia movie articles.",
    "icons": {
        "128": "w2i-128.png",
        "48": "w2i-48.png",
        "16": "w2i-16.png"
    },
    "manifest_version": 2,
    "permissions": [
        "http:\/\/www.omdbapi.com\/"
    ],
    "web_accessible_resources": [
        "imdb-star.png"
    ],
    "content_scripts": [
        {
            "css": [
                "wikitoimdb.css"
            ],
            "js": [
                "jquery.min.js",
                "script.js"
            ],
            "matches": [
                "http:\/\/*.wikipedia.org\/wiki\/*",
                "https:\/\/*.wikipedia.org\/wiki\/*"
            ]
        }
    ]
}