Scholar with Code

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

Qu'est-ce que Scholar with Code ?

Scholar with Code est une extension Chrome développée par Elad Richardson, et sa fonction principale est "An extension to show code implementations from Papers with Code directly in Google Scholar.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Scholar with Code

Téléchargez les fichiers d'extension Scholar with Code au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Scholar with Code Scholar with Code
ID nlnjigejpgngahmoainkakaafabijeki
URL Officiel https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki
Description An extension to show code implementations from Papers with Code directly in Google Scholar.
Taille du Fichier 28.72 KB
Nombre d'Installations 6,000
Version Actuelle 1.0.4
Dernière Mise à Jour 2021-12-31
Date de Publication 2020-06-24
Évaluation 4.50/5 Total 10 Évaluations
Développeur Elad Richardson
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}