Scholar with Code
An extension to show code implementations from Papers with Code directly in Google Scholar.
Wat is Scholar with Code?
Scholar with Code is een Chrome-extensie ontwikkeld door Elad Richardson, en de belangrijkste functie is "An extension to show code implementations from Papers with Code directly in Google Scholar.".
Extensie Screenshots
Download het CRX-bestand van de extensie Scholar with Code
Download Scholar with Code-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Scholar with Code |
ID | nlnjigejpgngahmoainkakaafabijeki |
Officiële URL | https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki |
Beschrijving | An extension to show code implementations from Papers with Code directly in Google Scholar. |
Bestandsgrootte | 28.72 KB |
Aantal Installaties | 6,000 |
Huidige Versie | 1.0.4 |
Laatst Bijgewerkt | 2021-12-31 |
Publicatiedatum | 2020-06-24 |
Beoordeling | 4.50/5 Totaal 10 Beoordelingen |
Ontwikkelaar | Elad Richardson |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |