Scholar Plus

Utilities for Google Scholar

Что такое Scholar Plus?

Scholar Plus - это расширение Chrome, разработанное tani, и его основная функция - "Utilities for Google Scholar".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Scholar Plus

Скачайте файлы расширений 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 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"
            ]
        }
    ]
}