Scholar with Code

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

Co je Scholar with Code?

Scholar with Code je rozšíření Chrome vyvinuté Elad Richardson, a jeho hlavní funkcí je „An extension to show code implementations from Papers with Code directly in Google Scholar.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Scholar with Code

Stáhněte si soubory rozšíření Scholar with Code ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Scholar with Code Scholar with Code
ID nlnjigejpgngahmoainkakaafabijeki
Oficiální URL https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki
Popis An extension to show code implementations from Papers with Code directly in Google Scholar.
Velikost souboru 28.72 KB
Počet instalací 6,000
Aktuální Verze 1.0.4
Poslední Aktualizace 2021-12-31
Datum Vydání 2020-06-24
Hodnocení 4.50/5 Celkem 10 Hodnocení
Vývojář Elad Richardson
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
    }
}