Scholar with Code

An extension to show code implementations from Papers with Code directly in Google Scholar.

Что такое Scholar with Code?

Scholar with Code - это расширение Chrome, разработанное Elad Richardson, и его основная функция - "An extension to show code implementations from Papers with Code directly in Google Scholar.".

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

screenshot

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

Скачайте файлы расширений Scholar with Code в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A simple extension to present the number of available code implementions (via Papers With Code) for articles listed on Google Scholar and arXiv. Mostly relevant for researchers looking to optimize their working flow with Google Scholar and Papers With Code.                    

Основная информация о расширении

Название Scholar with Code Scholar with Code
ID nlnjigejpgngahmoainkakaafabijeki
Официальный URL https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki
Описание An extension to show code implementations from Papers with Code directly in Google Scholar.
Размер файла 28.72 KB
Количество установок 6,000
Текущая Версия 1.0.4
Последнее Обновление 2021-12-31
Дата публикации 2020-06-24
Рейтинг 4.50/5 Всего 10 оценок
Разработчик Elad Richardson
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scholar with Code",
    "version": "1.0.4",
    "icons": {
        "493": "docs\/logo.png"
    },
    "description": "An extension to show code implementations from Papers with Code directly in Google Scholar.",
    "permissions": [
        "https:\/\/paperswithcode.com\/*",
        "https:\/\/scholar.google.com\/*",
        "https:\/\/scholar.google.co.il\/*",
        "https:\/\/arxiv.org\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "src\/content_scholar.js"
            ],
            "matches": [
                "https:\/\/scholar.google.com\/*",
                "https:\/\/scholar.google.co.il\/*"
            ]
        },
        {
            "js": [
                "src\/content_arxiv.js"
            ],
            "matches": [
                "https:\/\/arxiv.org\/abs\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    }
}