Netflix IMDB lookup
This extension shows the imdb rating for a given movie on netflix
What is Netflix IMDB lookup?
Netflix IMDB lookup is a Chrome extension developed by jdh, and its main feature is "This extension shows the imdb rating for a given movie on netflix".
Extension Screenshots
Download Netflix IMDB lookup Extension CRX File
Download Netflix IMDB lookup extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | jlnffkfebfjciachomeienhjladjhloi |
Official URL | https://chrome.google.com/webstore/detail/netflix-imdb-lookup/jlnffkfebfjciachomeienhjladjhloi |
Description | This extension shows the imdb rating for a given movie on netflix |
File Size | 277 KB |
Installation Count | 52 |
Current Version | 1.0 |
Last Updated | 2015-01-07 |
Publish Date | 2015-01-07 |
Rating | 3.00/5 Total 2 Ratings |
Developer | jdh |
Payment Type | free |
Supported Languages | 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" } } |