Netflix IMDB lookup
This extension shows the imdb rating for a given movie on netflix
Qu'est-ce que Netflix IMDB lookup ?
Netflix IMDB lookup est une extension Chrome développée par jdh, et sa fonction principale est "This extension shows the imdb rating for a given movie on netflix".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Netflix IMDB lookup
Téléchargez les fichiers d'extension Netflix IMDB lookup au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This simple extension leverages the OMDB api (http://www.omdbapi.com) to show you the IMDB rating for a given movie as you browse to it on Netflix. This makes it easy to see movies worth watching without having to jump over to IMDB to see the rating.
Informations de Base sur l'Extension
Nom | |
ID | jlnffkfebfjciachomeienhjladjhloi |
URL Officiel | https://chrome.google.com/webstore/detail/netflix-imdb-lookup/jlnffkfebfjciachomeienhjladjhloi |
Description | This extension shows the imdb rating for a given movie on netflix |
Taille du Fichier | 277 KB |
Nombre d'Installations | 52 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2015-01-07 |
Date de Publication | 2015-01-07 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | jdh |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix IMDB lookup", "description": "This extension shows the imdb rating for a given movie on netflix", "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/www.netflix.com\/WiMovie\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ "imdb.png" ], "icons": { "128": "icon_128.png" } } |