CopyPMID

Adds a "Copy PMID" button to NLM PubMed pages.

What is CopyPMID?

CopyPMID is a Chrome extension developed by twlee.nz, and its main feature is "Adds a "Copy PMID" button to NLM PubMed pages.".

Extension Screenshots

screenshot
screenshot

Download CopyPMID Extension CRX File

Download CopyPMID extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name CopyPMID CopyPMID
ID cjncnimjejonnepbihgjefeekaphhjll
Official URL https://chromewebstore.google.com/detail/copypmid/cjncnimjejonnepbihgjefeekaphhjll
Description Adds a "Copy PMID" button to NLM PubMed pages.
File Size 31.83 KB
Installation Count 136
Current Version 1.3
Last Updated 2020-05-30
Publish Date 2020-05-29
Developer twlee.nz
Email [email protected]
Payment Type free
Extension Website https://github.com/twlee79/CopyPMID
Supported Languages 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"
    }
}