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 |
官方URL | 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" ] } ] } |