PubMed Citation Manager Shortcut

Generates citation file on one click of icon.

Wat is PubMed Citation Manager Shortcut?

PubMed Citation Manager Shortcut is een Chrome-extensie ontwikkeld door Marzipan Browserlabs, en de belangrijkste functie is "Generates citation file on one click of icon.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie PubMed Citation Manager Shortcut

Download PubMed Citation Manager Shortcut-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam PubMed Citation Manager Shortcut PubMed Citation Manager Shortcut
ID egpbapakapnkkoeepabljegogkpibfeo
Officiële URL https://chrome.google.com/webstore/detail/pubmed-citation-manager-s/egpbapakapnkkoeepabljegogkpibfeo
Beschrijving Generates citation file on one click of icon.
Bestandsgrootte 193 KB
Aantal Installaties 2,000
Huidige Versie 1.25
Laatst Bijgewerkt 2014-09-15
Publicatiedatum 2014-09-15
Beoordeling 2.82/5 Totaal 11 Beoordelingen
Ontwikkelaar Marzipan Browserlabs
Betalingswijze free
Ondersteunde Talen 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"
    ]
}