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.

Was ist Easy IMDB Info?

Easy IMDB Info ist eine Chrome-Erweiterung, die von Sridhar PG entwickelt wurde, und ihr Hauptmerkmal ist "Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.".

Erweiterungsscreenshots

screenshot

Easy IMDB Info-Erweiterungs-CRX-Datei herunterladen

Laden Sie Easy IMDB Info-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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]                    

Grundlegende Informationen zur Erweiterung

Name Easy IMDB Info Easy IMDB Info
ID egnjfklhakfobdcbmhjmbdgbhaafibfj
Offizielle URL https://chromewebstore.google.com/detail/easy-imdb-info/egnjfklhakfobdcbmhjmbdgbhaafibfj
Beschreibung Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.
Dateigröße 95.1 KB
Installationsanzahl 225
Aktuelle Version 1.3
Letztes Update 2012-11-18
Veröffentlichungsdatum 2012-11-17
Bewertung 3.54/5 Insgesamt 13 Bewertungen
Entwickler Sridhar PG
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/"
    ]
}