Scholar Plus
Utilities for Google Scholar
Scholar Plusとは何ですか?
Scholar Plusはtaniによって開発されたChromeの拡張機能で、その主な機能は「Utilities for Google Scholar」です。
拡張機能のスクリーンショット
Scholar Plus拡張機能のCRXファイルをダウンロード
Scholar Plus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension is motivated to reduce annoying routines to manage bibliography. - Make a button (🔖) to copy a bibtex citation. - Save a PDF file as the name corresponding to the bibtex identifier.
拡張機能の基本情報
名前 | Scholar Plus |
ID | cicnobgaagpeggnpphhmeoakajhlnoad |
公式URL | https://chromewebstore.google.com/detail/scholar-plus/cicnobgaagpeggnpphhmeoakajhlnoad |
説明 | Utilities for Google Scholar |
ファイルサイズ | 6.35 KB |
インストール数 | 56 |
現在のバージョン | 0.3.0 |
最終更新日 | 2022-09-14 |
公開日 | 2022-09-05 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | tani |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/tani/scholar-plus |
ヘルプページのURL | https://github.com/tani/scholar-plus |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scholar Plus", "description": "Utilities for Google Scholar", "version": "0.3.0", "manifest_version": 3, "permissions": [ "downloads", "clipboardWrite" ], "icons": { "128": "icon.png" }, "host_permissions": [ "https:\/\/scholar.google.com\/", "https:\/\/scholar.googleusercontent.com\/" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/scholar.google.com\/*", "https:\/\/scholar.google.co.jp\/*", "https:\/\/scholar.google.jp\/*" ], "js": [ "content.js" ] } ] } |