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.”。

扩展截图

screenshot

下载PubMed Citation Manager Shortcut扩展crx文件

下载PubMed Citation Manager Shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 PubMed Citation Manager Shortcut PubMed Citation Manager Shortcut
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"
    ]
}