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 |
Eメール | [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 } } |