Wing Scholar summary add-on
This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.
Co je Wing Scholar summary add-on?
Wing Scholar summary add-on je rozšíření Chrome vyvinuté https://sites.google.com/site/wingnus, a jeho hlavní funkcí je „This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Wing Scholar summary add-on
Stáhněte si soubory rozšíření Wing Scholar summary add-on ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries.
Základní Informace o Rozšíření
Název | Wing Scholar summary add-on |
ID | ndhnkphdpaapcalgmchakcadgmcphagh |
Oficiální URL | https://chromewebstore.google.com/detail/wing-scholar-summary-add/ndhnkphdpaapcalgmchakcadgmcphagh |
Popis | This extension works off Google Scholar result pages, allowing the user to view abstracts or other machine generated summaries. |
Velikost souboru | 435 KB |
Počet instalací | 260 |
Aktuální Verze | 1.0.10 |
Poslední Aktualizace | 2014-11-17 |
Datum Vydání | 2014-11-16 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | https://sites.google.com/site/wingnus |
Typ Platby | free |
Webové stránky Rozšíření | http://wing.comp.nus.edu.sg/portal/ |
Podporované Jazyky | 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" } } } |