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
官方URL 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"
    }
}