PubMed Citation Manager Shortcut
Generates citation file on one click of icon.
PubMed Citation Manager Shortcut란 무엇입니까?
PubMed Citation Manager Shortcut은(는) Marzipan Browserlabs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates citation file on one click of icon."입니다.
확장 프로그램 스크린샷
PubMed Citation Manager Shortcut 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Please send any questions, feedback, or feature requests to marzipanlabs@gmail The PubMed Citation Manager Shortcut quickens the process of generating a citation file (.nbib) in PubMed and reduces extraneous clicking. Simply select the citations you want to keep using the check boxes in PubMed, then click the PubMed Citation Manager Shortcut icon to generate the citation file. If no citations are selected, the PubMed Citation Manager Shortcut will send the entire search to file for searches up to 500 results. For searches with more than 500 results, you must first make a selection. Once generated, the .nbib file can be uploaded to the citation manager of your choice. With version 1.21, the Citation Manager Shortcut is now optimized to work with the PubMed clipboard. A clipboard shortcut icon will now appear on search results and citation record pages. In the search results, the clipboard icon will appear at the top and bottom of each page. Simply select citations with the checkboxes and click the clipboard to add these results to your PubMed Clipboard. If you don't make any selections, all citations up to the 500 limit will be added to the PubMed Clipboard. You can then navigate to the PubMed Clipboard using the link in the upper right part of the screen, and then click on the main Citation Manager Shortcut icon to send citations to the .nbib file -- no need to worry about specifying a number of citations to send from the Clipboard, as they'll all be sent! With the addition of the clipboard shortcuts, it should now be easy to perform multiple searches on a topic in PubMed, quickly save selected results from each search to the clipboard, and then export the clipped results to file with a single click of the extension icon, making for a more efficient research process. This extension is free and is not affiliated with PubMed or the NCBI. ---Updates--- version 1.11 (4/14): The extension should now work on variants of the PubMed address, such as proxy URLs. version 1.12 (5/5/14): Fixed selection count bug. version 1.21 (5/14/14): Added PubMed Clipboard shortcut icons to search results and citation record pages. version 1.23 (5/14/14): Fixed a formatting issue and increased citation upper limit to 500. version 1.25 (9/15/14): Fixed formatting problem with Clipboard shortcut tooltip in Abstract Display of PubMed search results.
확장 프로그램 기본 정보
이름 | |
ID | egpbapakapnkkoeepabljegogkpibfeo |
공식 URL | https://chrome.google.com/webstore/detail/pubmed-citation-manager-s/egpbapakapnkkoeepabljegogkpibfeo |
설명 | Generates citation file on one click of icon. |
파일 크기 | 193 KB |
설치 횟수 | 2,000 |
현재 버전 | 1.25 |
최근 업데이트 | 2014-09-15 |
출시 날짜 | 2014-09-15 |
평점 | 2.82/5 총 11 개의 평점 |
개발자 | Marzipan Browserlabs |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PubMed Citation Manager Shortcut", "version": "1.25", "description": "Generates citation file on one click of icon.", "permissions": [ "tabs", "http:\/\/www.ncbi.nlm.nih.gov\/pubmed\/*", "https:\/\/www.ncbi.nlm.nih.gov\/pubmed\/*", "activeTab" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*pubmed*" ], "js": [ "clip.js" ] } ], "web_accessible_resources": [ "clip.png" ] } |