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 |
| 官方網址 | 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"
}
}
} | |