WikiToIMDB
Adds IMDB rating to the top of Wikipedia movie articles.
Что такое WikiToIMDB?
WikiToIMDB - это расширение Chrome, разработанное Jamedjo, и его основная функция - "Adds IMDB rating to the top of Wikipedia movie articles.".
Снимки экрана расширения
Скачать файл CRX расширения WikiToIMDB
Скачайте файлы расширений WikiToIMDB в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds an IMDB rating star in the top right of Wikipedia movie pages.
-Works on any article which links to IMDB as an 'External Link'
-Fetches ratings from OMDBapi.com
-Clicking the rating star takes you to IMDB!
Wiki-to-IMDB source code available at https://github.com/Jamedjo/chrome-wiki-to-imdb
Some other IMDB extensions I use: http://njoin.co.uk/grains/50f94cc06decf9f459000003 Основная информация о расширении
| Название | |
| ID | emgoinndehfmamfphfgpgojbencbjeeh |
| Официальный URL | https://chromewebstore.google.com/detail/wikitoimdb/emgoinndehfmamfphfgpgojbencbjeeh |
| Описание | Adds IMDB rating to the top of Wikipedia movie articles. |
| Размер файла | 61.78 KB |
| Количество установок | 35 |
| Текущая Версия | 0.1.2 |
| Последнее Обновление | 2013-01-26 |
| Дата публикации | 2013-01-26 |
| Рейтинг | 3.00/5 Всего 4 оценок |
| Разработчик | Jamedjo |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Jamedjo/chrome-wiki-to-imdb |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "WikiToIMDB",
"version": "0.1.2",
"description": "Adds IMDB rating to the top of Wikipedia movie articles.",
"icons": {
"128": "w2i-128.png",
"48": "w2i-48.png",
"16": "w2i-16.png"
},
"manifest_version": 2,
"permissions": [
"http:\/\/www.omdbapi.com\/"
],
"web_accessible_resources": [
"imdb-star.png"
],
"content_scripts": [
{
"css": [
"wikitoimdb.css"
],
"js": [
"jquery.min.js",
"script.js"
],
"matches": [
"http:\/\/*.wikipedia.org\/wiki\/*",
"https:\/\/*.wikipedia.org\/wiki\/*"
]
}
]
} | |