Scholar Plus
Utilities for Google Scholar
Was ist Scholar Plus?
Scholar Plus ist eine Chrome-Erweiterung, die von tani entwickelt wurde, und ihr Hauptmerkmal ist "Utilities for Google Scholar".
Erweiterungsscreenshots
Scholar Plus-Erweiterungs-CRX-Datei herunterladen
Laden Sie Scholar Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Scholar Plus |
ID | cicnobgaagpeggnpphhmeoakajhlnoad |
Offizielle URL | https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad |
Beschreibung | Utilities for Google Scholar |
Dateigröße | 6.35 KB |
Installationsanzahl | 56 |
Aktuelle Version | 0.3.0 |
Letztes Update | 2022-09-14 |
Veröffentlichungsdatum | 2022-09-05 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | tani |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tani/scholar-plus |
Hilfeseite URL | https://github.com/tani/scholar-plus |
Unterstützte Sprachen | 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" ] } ] } |