Scholar Plus

Utilities for Google Scholar

Co to jest Scholar Plus?

Scholar Plus to rozszerzenie Chrome opracowane przez tani, a jego główną funkcją jest „Utilities for Google Scholar”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Scholar Plus

Pobierz pliki rozszerzeń Scholar Plus w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Scholar Plus Scholar Plus
ID cicnobgaagpeggnpphhmeoakajhlnoad
Oficjalny URL https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad
Opis Utilities for Google Scholar
Rozmiar pliku 6.35 KB
Liczba instalacji 56
Aktualna Wersja 0.3.0
Ostatnia Aktualizacja 2022-09-14
Data Publikacji 2022-09-05
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper tani
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/tani/scholar-plus
Adres URL Strony Pomocy https://github.com/tani/scholar-plus
Obsługiwane Języki 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"
            ]
        }
    ]
}