Wing Scholar summary add-on
This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.
Что такое Wing Scholar summary add-on?
Wing Scholar summary add-on - это расширение Chrome, разработанное https://sites.google.com/site/wingnus, и его основная функция - "This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.".
Снимки экрана расширения
Скачать файл CRX расширения Wing Scholar summary add-on
Скачайте файлы расширений Wing Scholar summary add-on в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.
Основная информация о расширении
Название | Wing Scholar summary add-on |
ID | ndhnkphdpaapcalgmchakcadgmcphagh |
Официальный URL | https://chromewebstore.google.com/detail/wing-scholar-summary-add/ndhnkphdpaapcalgmchakcadgmcphagh |
Описание | This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries. |
Размер файла | 435 KB |
Количество установок | 260 |
Текущая Версия | 1.0.10 |
Последнее Обновление | 2014-11-17 |
Дата публикации | 2014-11-16 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | https://sites.google.com/site/wingnus |
Тип оплаты | free |
Официальный сайт расширения | http://wing.comp.nus.edu.sg/portal/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wing Scholar summary add-on", "description": "", "version": "1.0.10", "options_page": "options.html", "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "http:\/\/scholar.google.com.sg\/*", "tabs", "storage", "http:\/\/*\/*" ], "web_accessible_resources": [ "popup.html" ], "background": { "scripts": [ "background.js", "jquery-1.11.0.min.js", "jquery.hotkeys-0.7.9.min.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/scholar.google.com.sg\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.0.min.js", "jquery.hotkeys-0.7.9.min.js" ], "css": [ "core.css" ], "all_frames": true, "run_at": "document_end" } ], "commands": { "enable": { "suggested_key": { "default": "Ctrl+Shift+L" }, "description": "Enable the extension" }, "disable": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Disable the extension" }, "cycle": { "suggested_key": { "default": "Ctrl+Shift+H" }, "description": "Cycle through available display choices" } } } |