CopyPMID

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

Was ist CopyPMID?

CopyPMID ist eine Chrome-Erweiterung, die von twlee.nz entwickelt wurde, und ihr Hauptmerkmal ist "Adds a "Copy PMID" button to NLM PubMed pages.".

Erweiterungsscreenshots

screenshot
screenshot

CopyPMID-Erweiterungs-CRX-Datei herunterladen

Laden Sie CopyPMID-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CopyPMID CopyPMID
ID cjncnimjejonnepbihgjefeekaphhjll
Offizielle URL https://chromewebstore.google.com/detail/copypmid/cjncnimjejonnepbihgjefeekaphhjll
Beschreibung Adds a "Copy PMID" button to NLM PubMed pages.
Dateigröße 31.83 KB
Installationsanzahl 136
Aktuelle Version 1.3
Letztes Update 2020-05-30
Veröffentlichungsdatum 2020-05-29
Entwickler twlee.nz
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/twlee79/CopyPMID
Unterstützte Sprachen 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"
    }
}