Wikipedia Link Expander
Changes the title text for wikipedia links to be the first paragraph of that page
Что такое Wikipedia Link Expander?
Wikipedia Link Expander - это расширение Chrome, разработанное jacloar, и его основная функция - "Changes the title text for wikipedia links to be the first paragraph of that page".
Снимки экрана расширения
Скачать файл CRX расширения Wikipedia Link Expander
Скачайте файлы расширений Wikipedia Link Expander в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Wikipedia Link Expander is for people who enjoy browsing articles on Wikipedia and exploring all the links. This extension allows you to hover over a link in Wikipedia and view the first paragraph of information in that article so you can read without clicking away. It isn't very good, it is incredibly buggy, and there are probably better alternatives out there, but we wanted to show off our version!
Основная информация о расширении
Название | |
ID | olcpeoibndddjeocibmiabmohnedcdif |
Официальный URL | https://chrome.google.com/webstore/detail/wikipedia-link-expander/olcpeoibndddjeocibmiabmohnedcdif |
Описание | Changes the title text for wikipedia links to be the first paragraph of that page |
Размер файла | 48.91 KB |
Количество установок | 45 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2015-02-08 |
Дата публикации | 2015-02-08 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | jacloar |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wikipedia Link Expander", "description": "Changes the title text for wikipedia links to be the first paragraph of that page", "version": "1.0.1", "icons": { "16": "images\/wikipediaicon16.png", "48": "images\/wikipediaicon48.png", "128": "images\/wikipediaicon128.png" }, "permissions": [ "tabs", "activeTab", "contentSettings", "http:\/\/*.wikipedia.org\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*.wikipedia.org\/*" ], "js": [ "jquery-1.11.2.min.js", "wikipediaHover.js" ] } ] } |