Scholar with Code

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

Was ist Scholar with Code?

Scholar with Code ist eine Chrome-Erweiterung, die von Elad Richardson entwickelt wurde, und ihr Hauptmerkmal ist "An extension to show code implementations from Papers with Code directly in Google Scholar.".

Erweiterungsscreenshots

screenshot

Scholar with Code-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scholar with Code-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Scholar with Code Scholar with Code
ID nlnjigejpgngahmoainkakaafabijeki
Offizielle URL https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki
Beschreibung An extension to show code implementations from Papers with Code directly in Google Scholar.
Dateigröße 28.72 KB
Installationsanzahl 6,000
Aktuelle Version 1.0.4
Letztes Update 2021-12-31
Veröffentlichungsdatum 2020-06-24
Bewertung 4.50/5 Insgesamt 10 Bewertungen
Entwickler Elad Richardson
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
    }
}