IMDB Netflix Enhancer

Display IMDB ratings on netflix

Τι είναι το IMDB Netflix Enhancer;

Το IMDB Netflix Enhancer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Display IMDB ratings on netflix".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης IMDB Netflix Enhancer

Λήψη αρχείων επέκτασης IMDB Netflix Enhancer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Displays both IMDB Ratings and vote counts on the "more info" page that drops down when you click the chevron on the thumbnail. Just Download and use Netflix like normal, no setup necessary! 
This is a side project of mine I made for fun. I have many plans to expand on its current offerings and soon the extension will:
-Display rating on top of thumbnails, so there'll be no need to click to see the rating
-Display ratings from multiple aggregators, such as MetaCritic and RottenTomatoes
-Customizable display options
-And many more!
I hope anyone who decides to download enjoys it, and please let me know if you have any issues with it, as I look forward to improving the extension.


Note: 
-Poor internet connection may result in delays in the appearance of the ratings, but they will show up. Some ratings will show up as "N/A" as the database used to source the ratings doesn't always contain the latest films (I only noticed this occurring on films that came out in 2020). 
-RARELY an issue occurs that I haven't resolved yet, and you'll see "Rare_Issue" displayed as the rating. I have only seen this on one show (namely, "Nadiya's Time to eat") but if you do see that on any others please feel free to let me know.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα IMDB Netflix Enhancer IMDB Netflix Enhancer
ID oaddnbfellidjiofalmmidejmfjhellc
Επίσημο URL https://chromewebstore.google.com/detail/imdb-netflix-enhancer/oaddnbfellidjiofalmmidejmfjhellc
Περιγραφή Display IMDB ratings on netflix
Μέγεθος Αρχείου 27.29 KB
Αριθμός Εγκαταστάσεων 83
Τρέχουσα Έκδοση 0.5
Τελευταία Ενημέρωση 2020-05-23
Ημερομηνία Δημοσίευσης 2020-05-22
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IMDB Netflix Enhancer",
    "version": "0.5",
    "description": "Display IMDB ratings on netflix",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.omdbapi.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/www.netflix.com\/*",
        "https:\/\/www.omdbapi.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon48.png"
    }
}