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"
    }
}