Scholar with Code

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

Scholar with Code क्या है?

Scholar with Code Elad Richardson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to show code implementations from Papers with Code directly in Google Scholar."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Scholar with Code एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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