Netflix IMDB lookup
This extension shows the imdb rating for a given movie on netflix
Vad är Netflix IMDB lookup?
Netflix IMDB lookup är en Chrome-tillägg utvecklad av jdh, och dess huvudfunktion är "This extension shows the imdb rating for a given movie on netflix".
Tilläggsskärmbilder
Ladda ner Netflix IMDB lookup-förlängningens CRX-fil
Ladda ner Netflix IMDB lookup-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | jlnffkfebfjciachomeienhjladjhloi |
Officiell webbadress | https://chrome.google.com/webstore/detail/netflix-imdb-lookup/jlnffkfebfjciachomeienhjladjhloi |
Beskrivning | This extension shows the imdb rating for a given movie on netflix |
Filstorlek | 277 KB |
Antal Installationer | 52 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2015-01-07 |
Publiceringsdatum | 2015-01-07 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | jdh |
Betalningssätt | free |
Stödda Språk | 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" } } |