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은(는) https://sites.google.com/site/wingnus에 의해 개발된 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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } } |