CopyPMID

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

Co to jest CopyPMID?

CopyPMID to rozszerzenie Chrome opracowane przez twlee.nz, a jego główną funkcją jest „Adds a "Copy PMID" button to NLM PubMed pages.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia CopyPMID

Pobierz pliki rozszerzeń CopyPMID w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa CopyPMID CopyPMID
ID cjncnimjejonnepbihgjefeekaphhjll
Oficjalny URL https://chromewebstore.google.com/detail/copypmid/cjncnimjejonnepbihgjefeekaphhjll
Opis Adds a "Copy PMID" button to NLM PubMed pages.
Rozmiar pliku 31.83 KB
Liczba instalacji 136
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2020-05-30
Data Publikacji 2020-05-29
Deweloper twlee.nz
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/twlee79/CopyPMID
Obsługiwane Języki 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"
    }
}