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.

Hvad er Easy IMDB Info?

Easy IMDB Info er en Chrome-udvidelse udviklet af Sridhar PG, og dens hovedfunktion er "Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.".

Udvidelsesskærmbilleder

screenshot

Download Easy IMDB Info-udvidelses-CRX-fil

Download Easy IMDB Info-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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]                    

Grundlæggende oplysninger om udvidelsen

Navn Easy IMDB Info Easy IMDB Info
ID egnjfklhakfobdcbmhjmbdgbhaafibfj
Officiel URL https://chromewebstore.google.com/detail/easy-imdb-info/egnjfklhakfobdcbmhjmbdgbhaafibfj
Beskrivelse Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.
Filstørrelse 95.1 KB
Antal Installationer 225
Nuværende Version 1.3
Senest Opdateret 2012-11-18
Udgivelsesdato 2012-11-17
Bedømmelse 3.54/5 Samlet 13 Bedømmelser
Udvikler Sridhar PG
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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\/"
    ]
}