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
官方URL 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"
    }
}