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
    }
}