Netflix IMDb Ratings

Adds the IMDb rating to Netflix show cards

Netflix IMDb Ratingsとは何ですか?

Netflix IMDb Ratingsはkanslulzによって開発されたChromeの拡張機能で、その主な機能は「Adds the IMDb rating to Netflix show cards」です。

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

screenshot

Netflix IMDb Ratings拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension adds a bubble with the IMDb rating when you hover over a card on Netflix. It looks native and links to the IMDb description page.                    

拡張機能の基本情報

名前 Netflix IMDb Ratings Netflix IMDb Ratings
ID flbaobpeildpkibhejhbapoleckbjkih
公式URL https://chromewebstore.google.com/detail/netflix-imdb-ratings/flbaobpeildpkibhejhbapoleckbjkih
説明 Adds the IMDb rating to Netflix show cards
ファイルサイズ 6.33 KB
インストール数 71
現在のバージョン 1.1
最終更新日 2017-04-09
公開日 2017-04-09
評価 2.22/5 合計 9 レビュー
開発者 kanslulz
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix IMDb Ratings",
    "description": "Adds the IMDb rating to Netflix show cards",
    "version": "1.1",
    "browser_action": {
        "default_icon": "logo.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.netflix.com\/*",
                "http:\/\/*.netflix.com\/*"
            ],
            "js": [
                "page_observer.js",
                "rating_utils.js"
            ]
        }
    ]
}