IMDb ratings for watchever

Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.

IMDb ratings for watcheverとは何ですか?

IMDb ratings for watcheverはJoscha Fethによって開発されたChromeの拡張機能で、その主な機能は「Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.」です。

拡張機能のスクリーンショット

screenshot

IMDb ratings for watchever拡張機能のCRXファイルをダウンロード

IMDb ratings for watchever拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension seamlessly adds the ratings from IMDb and Rotten Tomatoes into the watchever web interface. Each movie and series detail page gets two more rating rows (if the movie/series can be found in IMDb). 

The IMDb ratings for watchever extension uses the Open Movie Database API by Brian Fritz (http://www.omdbapi.com/) for querying IMDb and Rotten Tomatoes. Thanks Brian!

The source code of this extension has been released under the MIT license - feel free to collaborate on enhancements and improvements here: https://github.com/joscha/watchever-imdb-ratings

Neither this extension, nor its author is in any way affiliated with Watchever GmbH.                    

拡張機能の基本情報

名前 IMDb ratings for watchever IMDb ratings for watchever
ID foobflajciachdjffhabgjfnommkpibb
公式URL https://chromewebstore.google.com/detail/imdb-ratings-for-watcheve/foobflajciachdjffhabgjfnommkpibb
説明 Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.
ファイルサイズ 97.65 KB
インストール数 105
現在のバージョン 0.0.7
最終更新日 2013-12-15
公開日 2013-12-14
評価 4.67/5 合計 6 レビュー
開発者 Joscha Feth
支払い方法 free
拡張機能のウェブサイト https://github.com/joscha/watchever-imdb-ratings
対応言語 de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDb ratings for watchever",
    "version": "0.0.7",
    "manifest_version": 2,
    "description": "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/www.watchever.de\/filme\/*",
        "*:\/\/www.watchever.de\/serien\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.watchever.de\/filme\/*",
                "*:\/\/www.watchever.de\/serien\/*"
            ],
            "include_globs": [
                "*:\/\/www.watchever.de\/filme\/*-*",
                "*:\/\/www.watchever.de\/serien\/*-*"
            ],
            "css": [
                "data\/inject\/inject.css"
            ],
            "js": [
                "data\/jquery\/jquery-2.0.3.min.js",
                "data\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/jquery\/jquery-2.0.3.min.map"
    ]
}