PubMed Citation Manager Shortcut
Generates citation file on one click of icon.
PubMed Citation Manager Shortcut là gì?
PubMed Citation Manager Shortcut là một tiện ích mở rộng Chrome được phát triển bởi Marzipan Browserlabs, và tính năng chính của nó là "Generates citation file on one click of icon.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PubMed Citation Manager Shortcut
Tải xuống các tệp mở rộng PubMed Citation Manager Shortcut dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | egpbapakapnkkoeepabljegogkpibfeo |
URL Chính Thức | https://chrome.google.com/webstore/detail/pubmed-citation-manager-s/egpbapakapnkkoeepabljegogkpibfeo |
Mô tả | Generates citation file on one click of icon. |
Kích Thước Tệp | 193 KB |
Số Lần Cài Đặt | 2,000 |
Phiên Bản Hiện Tại | 1.25 |
Cập Nhật Lần Cuối | 2014-09-15 |
Ngày Phát Hành | 2014-09-15 |
Đánh Giá | 2.82/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Marzipan Browserlabs |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |