CopyPMID

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

什麼是CopyPMID?

CopyPMID是由twlee.nz開發的Chrome擴展程式,該擴展的主要功能是“Adds a "Copy PMID" button to NLM PubMed pages.”。

擴展截圖

screenshot
screenshot

下載CopyPMID擴展crx文件

下載CopyPMID擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 CopyPMID CopyPMID
ID cjncnimjejonnepbihgjefeekaphhjll
官方網址 https://chromewebstore.google.com/detail/copypmid/cjncnimjejonnepbihgjefeekaphhjll
簡介 Adds a "Copy PMID" button to NLM PubMed pages.
檔案大小 31.83 KB
安裝次數 136
目前版本 1.3
更新時間 2020-05-30
上架時間 2020-05-29
開發者 twlee.nz
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/twlee79/CopyPMID
支援的語言 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"
    }
}