CopyPMID
Adds a "Copy PMID" button to NLM PubMed pages.
Qu'est-ce que CopyPMID ?
CopyPMID est une extension Chrome développée par twlee.nz, et sa fonction principale est "Adds a "Copy PMID" button to NLM PubMed pages.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CopyPMID
Téléchargez les fichiers d'extension CopyPMID au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | CopyPMID |
ID | cjncnimjejonnepbihgjefeekaphhjll |
URL Officiel | https://chromewebstore.google.com/detail/copypmid/cjncnimjejonnepbihgjefeekaphhjll |
Description | Adds a "Copy PMID" button to NLM PubMed pages. |
Taille du Fichier | 31.83 KB |
Nombre d'Installations | 136 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2020-05-30 |
Date de Publication | 2020-05-29 |
Développeur | twlee.nz |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/twlee79/CopyPMID |
Langues Prises en Charge | 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" } } |