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.

O que é Easy IMDB Info?

Easy IMDB Info é uma extensão do Chrome desenvolvida por Sridhar PG, e sua principal característica é "Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Easy IMDB Info

Baixe arquivos de extensão Easy IMDB Info no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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]                    

Informações Básicas da Extensão

Nome Easy IMDB Info Easy IMDB Info
ID egnjfklhakfobdcbmhjmbdgbhaafibfj
URL Oficial https://chromewebstore.google.com/detail/easy-imdb-info/egnjfklhakfobdcbmhjmbdgbhaafibfj
Descrição Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.
Tamanho do Arquivo 95.1 KB
Contagem de Instalações 225
Versão Atual 1.3
Última Atualização 2012-11-18
Data de Publicação 2012-11-17
Classificação 3.54/5 Total de 13 Avaliações
Desenvolvedor Sridhar PG
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/"
    ]
}