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文件
下载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 } } |