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.

Qu'est-ce que Easy IMDB Info ?

Easy IMDB Info est une extension Chrome développée par Sridhar PG, et sa fonction principale est "Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Easy IMDB Info

Téléchargez les fichiers d'extension Easy IMDB Info au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom Easy IMDB Info Easy IMDB Info
ID egnjfklhakfobdcbmhjmbdgbhaafibfj
URL Officiel https://chromewebstore.google.com/detail/easy-imdb-info/egnjfklhakfobdcbmhjmbdgbhaafibfj
Description Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.
Taille du Fichier 95.1 KB
Nombre d'Installations 225
Version Actuelle 1.3
Dernière Mise à Jour 2012-11-18
Date de Publication 2012-11-17
Évaluation 3.54/5 Total 13 Évaluations
Développeur Sridhar PG
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/"
    ]
}