CopyPMID
Adds a "Copy PMID" button to NLM PubMed pages.
CopyPMIDとは何ですか?
CopyPMIDはtwlee.nzによって開発されたChromeの拡張機能で、その主な機能は「Adds a "Copy PMID" button to NLM PubMed pages.」です。
拡張機能のスクリーンショット
CopyPMID拡張機能のCRXファイルをダウンロード
CopyPMID拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A very simple Chrome extension to add a "Copy PMID" button to NLM PubMed pages. This button provides a quick way of copying the PubMed ID (PMID) of an item to the clipboard. You can then paste the PMID of the item into your favourite reference manager's search tool to import the items into your reference manager. Usage: - Press the button to copy the PMID to the clipboard. - Hold down 'Shift' or 'Ctrl' when clicking button to append to current contents of clipboard (instead of replacing), separated by a space. This is useful for copying multiple items.
拡張機能の基本情報
名前 | CopyPMID |
ID | cjncnimjejonnepbihgjefeekaphhjll |
公式URL | https://chromewebstore.google.com/detail/copypmid/cjncnimjejonnepbihgjefeekaphhjll |
説明 | Adds a "Copy PMID" button to NLM PubMed pages. |
ファイルサイズ | 31.83 KB |
インストール数 | 136 |
現在のバージョン | 1.3 |
最終更新日 | 2020-05-30 |
公開日 | 2020-05-29 |
開発者 | twlee.nz |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/twlee79/CopyPMID |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CopyPMID", "version": "1.3", "manifest_version": 2, "description": "Adds a \"Copy PMID\" button to NLM PubMed pages.", "author": "T W Lee", "content_scripts": [ { "matches": [ "*:\/\/*.nlm.nih.gov\/pubmed*", "*:\/\/pubmed.ncbi.nlm.nih.gov\/*" ], "js": [ "pmid_inject.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "clipboardWrite", "clipboardRead" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |