Netflix IMDB lookup

This extension shows the imdb rating for a given movie on netflix

Apa itu Netflix IMDB lookup?

Netflix IMDB lookup adalah ekstensi Chrome yang dikembangkan oleh jdh, dan fitur utamanya adalah "This extension shows the imdb rating for a given movie on netflix".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Netflix IMDB lookup

Unduh file ekstensi Netflix IMDB lookup dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Netflix IMDB lookup Netflix IMDB lookup
ID jlnffkfebfjciachomeienhjladjhloi
URL Resmi https://chrome.google.com/webstore/detail/netflix-imdb-lookup/jlnffkfebfjciachomeienhjladjhloi
Deskripsi This extension shows the imdb rating for a given movie on netflix
Ukuran File 277 KB
Jumlah Instalasi 52
Versi Saat Ini 1.0
Terakhir Diperbarui 2015-01-07
Tanggal Publikasi 2015-01-07
Penilaian 3.00/5 Total 2 Penilaian
Pengembang jdh
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}