ResearchCode code finder
Find code for research papers
ResearchCode code finder란 무엇입니까?
ResearchCode code finder은(는) http://researchcode.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find code for research papers"입니다.
확장 프로그램 스크린샷
ResearchCode code finder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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 } |