Netflix IMDb Ratings

Adds the IMDb rating to Netflix show cards

Was ist Netflix IMDb Ratings?

Netflix IMDb Ratings ist eine Chrome-Erweiterung, die von kanslulz entwickelt wurde, und ihr Hauptmerkmal ist "Adds the IMDb rating to Netflix show cards".

Erweiterungsscreenshots

screenshot

Netflix IMDb Ratings-Erweiterungs-CRX-Datei herunterladen

Laden Sie Netflix IMDb Ratings-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension adds a bubble with the IMDb rating when you hover over a card on Netflix. It looks native and links to the IMDb description page.                    

Grundlegende Informationen zur Erweiterung

Name Netflix IMDb Ratings Netflix IMDb Ratings
ID flbaobpeildpkibhejhbapoleckbjkih
Offizielle URL https://chromewebstore.google.com/detail/netflix-imdb-ratings/flbaobpeildpkibhejhbapoleckbjkih
Beschreibung Adds the IMDb rating to Netflix show cards
Dateigröße 6.33 KB
Installationsanzahl 71
Aktuelle Version 1.1
Letztes Update 2017-04-09
Veröffentlichungsdatum 2017-04-09
Bewertung 2.22/5 Insgesamt 9 Bewertungen
Entwickler kanslulz
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix IMDb Ratings",
    "description": "Adds the IMDb rating to Netflix show cards",
    "version": "1.1",
    "browser_action": {
        "default_icon": "logo.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.netflix.com\/*",
                "http:\/\/*.netflix.com\/*"
            ],
            "js": [
                "page_observer.js",
                "rating_utils.js"
            ]
        }
    ]
}