Scholar Plus
Utilities for Google Scholar
What is Scholar Plus?
Scholar Plus is a Chrome extension developed by tani, and its main feature is "Utilities for Google Scholar".
Extension Screenshots
Download Scholar Plus Extension CRX File
Download Scholar Plus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Scholar Plus |
ID | cicnobgaagpeggnpphhmeoakajhlnoad |
Official URL | https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad |
Description | Utilities for Google Scholar |
File Size | 6.35 KB |
Installation Count | 56 |
Current Version | 0.3.0 |
Last Updated | 2022-09-14 |
Publish Date | 2022-09-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | tani |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/tani/scholar-plus |
Help Page URL | https://github.com/tani/scholar-plus |
Supported Languages | 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" ] } ] } |