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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}