Netflix Rating

View IMDB and Rotten Tomatoes scores inside Netflix!

What is Netflix Rating?

Netflix Rating is a Chrome extension developed by Maya Benjamin, and its main feature is "View IMDB and Rotten Tomatoes scores inside Netflix!".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Netflix Rating Extension CRX File

Download Netflix Rating 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

                        View Imdb and Rotten Tomatoes scores of movies and series directly in Netflix! Simple and easy to use.

Version 2.0:
* Can now view Rotten Tomatoes scores!
* Added menu to choose which scores to view.

Version 1.1: 
* Added support for gallery view.
* Added support for search.                    

Extension Basic Information

Name Netflix Rating Netflix Rating
ID bcmbdiempfifibcoenpgmdcmaacdiocj
Official URL https://chromewebstore.google.com/detail/netflix-rating/bcmbdiempfifibcoenpgmdcmaacdiocj
Description View IMDB and Rotten Tomatoes scores inside Netflix!
File Size 20.55 KB
Installation Count 259
Current Version 2.0.6
Last Updated 2022-03-05
Publish Date 2020-05-02
Rating 3.67/5 Total 6 Ratings
Developer Maya Benjamin
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Rating",
    "version": "2.0.6",
    "description": "View IMDB and Rotten Tomatoes scores inside Netflix!",
    "permissions": [
        "*:\/\/*.netflix.com\/browse",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/browse\/*"
            ],
            "js": [
                "NetflixRating.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}