Pocket Pharmacist
Highlight a drug name on any website to get a description including the drug's other names, drug class, and what it may treat.
Was ist Pocket Pharmacist?
Pocket Pharmacist ist eine Chrome-Erweiterung, die von logandeveloper03 entwickelt wurde, und ihr Hauptmerkmal ist "Highlight a drug name on any website to get a description including the drug's other names, drug class, and what it may treat.".
Erweiterungsscreenshots
Pocket Pharmacist-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pocket Pharmacist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Highlight an unknown drug name with your cursor, and press the shortcut buttons (Windows: ALT+P, Mac: CMD-SHIFT-P) to get the drug's other name, the drug class, and what it may treat. It uses National Institute of Health's NCBI API, so it includes over 100s of drugs with quick response time. Useful for web surfers to pharmacologist students. Click extension to get recently searched drugs.
Grundlegende Informationen zur Erweiterung
Name | Pocket Pharmacist |
ID | fgigbcegdhghooekkdkblahmoecnhign |
Offizielle URL | https://chromewebstore.google.com/detail/pocket-pharmacist/fgigbcegdhghooekkdkblahmoecnhign |
Beschreibung | Highlight a drug name on any website to get a description including the drug's other names, drug class, and what it may treat. |
Dateigröße | 543 KB |
Installationsanzahl | 98 |
Aktuelle Version | 1.1 |
Letztes Update | 2021-02-16 |
Veröffentlichungsdatum | 2021-02-05 |
Entwickler | logandeveloper03 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pocket Pharmacist", "version": "1.1", "description": "Highlight a drug name on any website to get a description including the drug's other names, drug class, and what it may treat.", "permissions": [ "activeTab", "https:\/\/rxnav.nlm.nih.gov\/*", "storage", "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "toggle": { "suggested_key": { "default": "Alt+P", "mac": "Command+Shift+P" }, "description": "Display highlighted drug's information." } }, "page_action": { "default_popup": "default.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |