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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |