Netflix IMDB lookup
This extension shows the imdb rating for a given movie on netflix
Wat is Netflix IMDB lookup?
Netflix IMDB lookup is een Chrome-extensie ontwikkeld door jdh, en de belangrijkste functie is "This extension shows the imdb rating for a given movie on netflix".
Extensie Screenshots
Download het CRX-bestand van de extensie Netflix IMDB lookup
Download Netflix IMDB lookup-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | jlnffkfebfjciachomeienhjladjhloi |
Officiële URL | https://chrome.google.com/webstore/detail/netflix-imdb-lookup/jlnffkfebfjciachomeienhjladjhloi |
Beschrijving | This extension shows the imdb rating for a given movie on netflix |
Bestandsgrootte | 277 KB |
Aantal Installaties | 52 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2015-01-07 |
Publicatiedatum | 2015-01-07 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | jdh |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |