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文件
下载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. 扩展基本信息
| 名称 | |
| 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"
}
}
} | |