Easy IMDB Info

Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.

Co to jest Easy IMDB Info?

Easy IMDB Info to rozszerzenie Chrome opracowane przez Sridhar PG, a jego główną funkcją jest „Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Easy IMDB Info

Pobierz pliki rozszerzeń Easy IMDB Info w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Adds rating(both from IMDB and RottenTomatoes.com) and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.

For any bugs or suggestions, please mail to [email protected]                    

Podstawowe informacje o rozszerzeniu

Nazwa Easy IMDB Info Easy IMDB Info
ID egnjfklhakfobdcbmhjmbdgbhaafibfj
Oficjalny URL https://chromewebstore.google.com/detail/easy-imdb-info/egnjfklhakfobdcbmhjmbdgbhaafibfj
Opis Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.
Rozmiar pliku 95.1 KB
Liczba instalacji 225
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2012-11-18
Data Publikacji 2012-11-17
Ocena 3.54/5 Łącznie 13 Oceny
Deweloper Sridhar PG
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy IMDB Info",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Adds rating and duration just below the movie name in Actors\/Directors page. Also displays the plot of the movie as tooltip.",
    "icons": {
        "18": "imdb48.png",
        "24": "imdb48.png",
        "48": "imdb48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/name\/*"
            ],
            "js": [
                "content\/imdbquery.js",
                "content\/jquery.js"
            ],
            "css": [
                "content\/imdbquery.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/www.imdb.com\/",
        "http:\/\/www.omdbapi.com\/"
    ]
}