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.
Что такое Easy IMDB Info?
Easy IMDB Info - это расширение Chrome, разработанное Sridhar PG, и его основная функция - "Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.".
Снимки экрана расширения
Скачать файл CRX расширения Easy IMDB Info
Скачайте файлы расширений Easy IMDB Info в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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] Основная информация о расширении
| Название | |
| ID | egnjfklhakfobdcbmhjmbdgbhaafibfj |
| Официальный URL | https://chromewebstore.google.com/detail/easy-imdb-info/egnjfklhakfobdcbmhjmbdgbhaafibfj |
| Описание | Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip. |
| Размер файла | 95.1 KB |
| Количество установок | 225 |
| Текущая Версия | 1.3 |
| Последнее Обновление | 2012-11-18 |
| Дата публикации | 2012-11-17 |
| Рейтинг | 3.54/5 Всего 13 оценок |
| Разработчик | Sridhar PG |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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\/"
]
} | |