DOI Helper
A little add-on appending SciHub buttons for some webpages with s c i e n c e.
DOI Helperとは何ですか?
DOI HelperはUnknownによって開発されたChromeの拡張機能で、その主な機能は「A little add-on appending SciHub buttons for some webpages with s c i e n c e.」です。
拡張機能のスクリーンショット
DOI Helper拡張機能のCRXファイルをダウンロード
DOI Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds quick links redirecting to Sci-Hub page related to given paper. Currently supports only a few journals
拡張機能の基本情報
名前 | DOI Helper |
ID | mfdbhfpaedhhgglcahhmhgannefehicb |
公式URL | https://chromewebstore.google.com/detail/doi-helper/mfdbhfpaedhhgglcahhmhgannefehicb |
説明 | A little add-on appending SciHub buttons for some webpages with s c i e n c e. |
ファイルサイズ | 86.73 KB |
インストール数 | 6,424 |
現在のバージョン | 1.0.2.1 |
最終更新日 | 2020-04-07 |
公開日 | 2020-04-07 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | Unknown |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DOI Helper", "version": "1.0.2.1", "description": "A little add-on appending SciHub buttons for some webpages with s c i e n c e.", "icons": { "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/inspirehep.net\/*" ], "js": [ "inspire-hep.js" ] }, { "matches": [ "*:\/\/*.sciencedirect.com\/*" ], "js": [ "science-direct.js" ] }, { "matches": [ "*:\/\/science.sciencemag.org\/*" ], "js": [ "science.js" ] }, { "matches": [ "*:\/\/journals.aps.org\/*\/abstract\/*" ], "js": [ "aps.js" ] } ] } |