RateFlix: IMDb and RT ratings on Netflix

Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX

什麼是RateFlix: IMDb and RT ratings on Netflix?

RateFlix: IMDb and RT ratings on Netflix是由Pankaj Bhayare and Gaurav Panday開發的Chrome擴展程式,該擴展的主要功能是“Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX”。

擴展截圖

screenshot
screenshot

下載RateFlix: IMDb and RT ratings on Netflix擴展crx文件

下載RateFlix: IMDb and RT ratings on Netflix擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        We are familiar with situations where we strain ourselves by searching ratings of ever evolving online streaming content before deciding to invest our time in it.

The RateFlix extension saves you all the trouble and displays the IMDb and Rotten Tomotoes ratings right in the content-preview on Netflix. The ratings now are just a click away on Netflix itself.

Happy binge-watching :)                    

擴展基本資訊

名稱 RateFlix: IMDb and RT ratings on Netflix RateFlix: IMDb and RT ratings on Netflix
ID pcmbijibnnemoogikbfjdjnhablljgbp
官方網址 https://chromewebstore.google.com/detail/rateflix-imdb-and-rt-rati/pcmbijibnnemoogikbfjdjnhablljgbp
簡介 Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX
檔案大小 25.5 KB
安裝次數 28
目前版本 0.2
更新時間 2020-08-11
上架時間 2020-07-23
評分 5.00/5 共 2 次評分
開發者 Pankaj Bhayare and Gaurav Panday
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateFlix: IMDb and RT ratings on Netflix",
    "version": "0.2",
    "description": "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.omdbapi.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "rating.css"
            ]
        }
    ],
    "icons": {
        "16": "extentionIcon.png",
        "128": "extentionIcon128.png"
    },
    "permissions": [
        "https:\/\/www.netflix.com\/*",
        "https:\/\/www.omdbapi.com\/*"
    ],
    "web_accessible_resources": [
        "rating.js"
    ],
    "browser_action": {
        "default_icon": "extentionIcon.png",
        "default_popup": "popup.html"
    }
}