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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to show code implementations from Papers with Code directly in Google Scholar."입니다.
확장 프로그램 스크린샷
Scholar with Code 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } } |