Scholar with Code
An extension to show code implementations from Papers with Code directly in Google Scholar.
Scholar with Codeคืออะไร?
Scholar with Code เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elad Richardson และคุณลักษณะหลักของมันคือ "An extension to show code implementations from Papers with Code directly in Google Scholar."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scholar with Code
ดาวน์โหลดไฟล์ส่วนขยาย Scholar with Code ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 } } |