Scholar with Code

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

Co to jest Scholar with Code?

Scholar with Code to rozszerzenie Chrome opracowane przez Elad Richardson, a jego główną funkcją jest „An extension to show code implementations from Papers with Code directly in Google Scholar.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Scholar with Code

Pobierz pliki rozszerzeń Scholar with Code 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Scholar with Code Scholar with Code
ID nlnjigejpgngahmoainkakaafabijeki
Oficjalny URL https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki
Opis An extension to show code implementations from Papers with Code directly in Google Scholar.
Rozmiar pliku 28.72 KB
Liczba instalacji 6,000
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2021-12-31
Data Publikacji 2020-06-24
Ocena 4.50/5 Łącznie 10 Oceny
Deweloper Elad Richardson
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
    }
}