ResearchCode code finder

Find code for research papers

ResearchCode code finderคืออะไร?

ResearchCode code finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://researchcode.com และคุณลักษณะหลักของมันคือ "Find code for research papers"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ResearchCode code finder

ดาวน์โหลดไฟล์ส่วนขยาย ResearchCode code finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}