ResearchCode code finder

Find code for research papers

ResearchCode code finder क्या है?

ResearchCode code finder http://researchcode.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find code for research papers"।

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

screenshot
screenshot

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

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

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

                        Use the extension to find code suggestions when you are browsing research papers in arxiv.org or Google Scholar.

To use it in Google Scholar, follow these steps after installation:
1. Go to scholar.google.com
2. Type 'deep learning' or any other search phrase
3. Next to some of the titles, you will see a [code] link.
4. Follow the link to see code for that research paper

To use it in arxiv, follow these steps after installation:
1. Go to arxiv.org
2. Type 'deep learning' or any other search phrase in search box
3. Next to some of the titles, you will see a [code] link.
4. Follow the link to see code for that research paper
5. In arxiv, you will also see the code links in individual pages of papers. For example visit https://arxiv.org/abs/1506.01497 . There will be a link next to the title pointing to the code                    

एक्सटेंशन की मूल जानकारी

नाम ResearchCode code finder ResearchCode code finder
ID fjlgffkjbojpamibnefignobehknjane
आधिकारिक URL https://chrome.google.com/webstore/detail/researchcode-code-finder/fjlgffkjbojpamibnefignobehknjane
विवरण Find code for research papers
फ़ाइल का आकार 34.92 KB
स्थापना संख्या 4,000
वर्तमान संस्करण 1.1
अंतिम अपडेट 2019-08-21
प्रकाशन तिथि 2019-08-20
रेटिंग 2.50/5 कुल 4 रेटिंग्स
डेवलपर http://researchcode.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://researchcode.com/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ResearchCode code finder",
    "version": "1.1",
    "description": "Find code for research papers",
    "permissions": [
        "activeTab",
        "https:\/\/researchcode.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/arxiv.org\/abs\/*"
            ],
            "js": [
                "arxivContentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/arxiv.org\/search\/*"
            ],
            "js": [
                "arxivSearchContentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/scholar.google.com\/scholar*"
            ],
            "js": [
                "gsContentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/scholar.google.com\/citations*"
            ],
            "js": [
                "gsAuthorContentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/rc_logo_16.png",
        "32": "images\/rc_logo_32.png",
        "48": "images\/rc_logo_48.png",
        "128": "images\/rc_logo_128.png"
    },
    "manifest_version": 2
}