RateFlix: IMDb and RT ratings on Netflix

Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX

What is RateFlix: IMDb and RT ratings on Netflix?

RateFlix: IMDb and RT ratings on Netflix is a Chrome extension developed by Pankaj Bhayare and Gaurav Panday, and its main feature is "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX".

Extension Screenshots

screenshot
screenshot

Download RateFlix: IMDb and RT ratings on Netflix Extension CRX File

Download RateFlix: IMDb and RT ratings on Netflix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 :)                    

Extension Basic Information

Name RateFlix: IMDb and RT ratings on Netflix RateFlix: IMDb and RT ratings on Netflix
ID pcmbijibnnemoogikbfjdjnhablljgbp
Official URL https://chromewebstore.google.com/detail/rateflix-imdb-and-rt-rati/pcmbijibnnemoogikbfjdjnhablljgbp
Description Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX
File Size 25.5 KB
Installation Count 28
Current Version 0.2
Last Updated 2020-08-11
Publish Date 2020-07-23
Rating 5.00/5 Total 2 Ratings
Developer Pankaj Bhayare and Gaurav Panday
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}