CopyPMID

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

CopyPMID là gì?

CopyPMID là một tiện ích mở rộng Chrome được phát triển bởi twlee.nz, và tính năng chính của nó là "Adds a "Copy PMID" button to NLM PubMed pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CopyPMID

Tải xuống các tệp mở rộng CopyPMID dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CopyPMID CopyPMID
ID cjncnimjejonnepbihgjefeekaphhjll
URL Chính Thức https://chromewebstore.google.com/detail/copypmid/cjncnimjejonnepbihgjefeekaphhjll
Mô tả Adds a "Copy PMID" button to NLM PubMed pages.
Kích Thước Tệp 31.83 KB
Số Lần Cài Đặt 136
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2020-05-30
Ngày Phát Hành 2020-05-29
Nhà Phát Triển twlee.nz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/twlee79/CopyPMID
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}