Scholar with Code
An extension to show code implementations from Papers with Code directly in Google Scholar.
What is Scholar with Code?
Scholar with Code is a Chrome extension developed by Elad Richardson, and its main feature is "An extension to show code implementations from Papers with Code directly in Google Scholar.".
Extension Screenshots
Download Scholar with Code Extension CRX File
Download Scholar with Code extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Scholar with Code |
ID | nlnjigejpgngahmoainkakaafabijeki |
Official URL | https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki |
Description | An extension to show code implementations from Papers with Code directly in Google Scholar. |
File Size | 28.72 KB |
Installation Count | 6,000 |
Current Version | 1.0.4 |
Last Updated | 2021-12-31 |
Publish Date | 2020-06-24 |
Rating | 4.50/5 Total 10 Ratings |
Developer | Elad Richardson |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } } |