Scholar with Code
An extension to show code implementations from Papers with Code directly in Google Scholar.
Hvad er Scholar with Code?
Scholar with Code er en Chrome-udvidelse udviklet af Elad Richardson, og dens hovedfunktion er "An extension to show code implementations from Papers with Code directly in Google Scholar.".
Udvidelsesskærmbilleder
Download Scholar with Code-udvidelses-CRX-fil
Download Scholar with Code-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Scholar with Code |
ID | nlnjigejpgngahmoainkakaafabijeki |
Officiel URL | https://chromewebstore.google.com/detail/scholar-with-code/nlnjigejpgngahmoainkakaafabijeki |
Beskrivelse | An extension to show code implementations from Papers with Code directly in Google Scholar. |
Filstørrelse | 28.72 KB |
Antal Installationer | 6,000 |
Nuværende Version | 1.0.4 |
Senest Opdateret | 2021-12-31 |
Udgivelsesdato | 2020-06-24 |
Bedømmelse | 4.50/5 Samlet 10 Bedømmelser |
Udvikler | Elad Richardson |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } } |