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é es Easy IMDB Info?
Easy IMDB Info es una extensión de Chrome desarrollada por Sridhar PG, y su función principal es "Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Easy IMDB Info
Descarga archivos de extensión Easy IMDB Info en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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]
Información Básica de la Extensión
Nombre | Easy IMDB Info |
ID | egnjfklhakfobdcbmhjmbdgbhaafibfj |
URL Oficial | https://chromewebstore.google.com/detail/easy-imdb-info/egnjfklhakfobdcbmhjmbdgbhaafibfj |
Descripción | Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip. |
Tamaño del Archivo | 95.1 KB |
Cantidad de Instalaciones | 225 |
Versión Actual | 1.3 |
Última Actualización | 2012-11-18 |
Fecha de Publicación | 2012-11-17 |
Calificación | 3.54/5 Total de 13 Calificaciones |
Desarrollador | Sridhar PG |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/" ] } |