Scholar Plus
Utilities for Google Scholar
Wat is Scholar Plus?
Scholar Plus is een Chrome-extensie ontwikkeld door tani, en de belangrijkste functie is "Utilities for Google Scholar".
Extensie Screenshots
Download het CRX-bestand van de extensie Scholar Plus
Download Scholar Plus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | cicnobgaagpeggnpphhmeoakajhlnoad |
| Officiële URL | https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad |
| Beschrijving | Utilities for Google Scholar |
| Bestandsgrootte | 6.35 KB |
| Aantal Installaties | 56 |
| Huidige Versie | 0.3.0 |
| Laatst Bijgewerkt | 2022-09-14 |
| Publicatiedatum | 2022-09-05 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | tani |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/tani/scholar-plus |
| Help Pagina-URL | https://github.com/tani/scholar-plus |
| Ondersteunde Talen | 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"
]
}
]
} | |