Scholar Plus
Utilities for Google Scholar
什麼是Scholar Plus?
Scholar Plus是由tani開發的Chrome擴展程式,該擴展的主要功能是“Utilities for Google Scholar”。
擴展截圖
下載Scholar Plus擴展crx文件
下載Scholar Plus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension is motivated to reduce annoying routines to manage bibliography. - Make a button (🔖) to copy a bibtex citation. - Save a PDF file as the name corresponding to the bibtex identifier.
擴展基本資訊
名稱 | Scholar Plus |
ID | cicnobgaagpeggnpphhmeoakajhlnoad |
官方網址 | https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad |
簡介 | Utilities for Google Scholar |
檔案大小 | 6.35 KB |
安裝次數 | 56 |
目前版本 | 0.3.0 |
更新時間 | 2022-09-14 |
上架時間 | 2022-09-05 |
評分 | 5.00/5 共 1 次評分 |
開發者 | tani |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/tani/scholar-plus |
說明頁面URL | https://github.com/tani/scholar-plus |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scholar Plus", "description": "Utilities for Google Scholar", "version": "0.3.0", "manifest_version": 3, "permissions": [ "downloads", "clipboardWrite" ], "icons": { "128": "icon.png" }, "host_permissions": [ "https:\/\/scholar.google.com\/", "https:\/\/scholar.googleusercontent.com\/" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/scholar.google.com\/*", "https:\/\/scholar.google.co.jp\/*", "https:\/\/scholar.google.jp\/*" ], "js": [ "content.js" ] } ] } |