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.

¿Qué es Pocket Pharmacist?

Pocket Pharmacist es una extensión de Chrome desarrollada por logandeveloper03, y su función principal es "Highlight a drug name on any website to get a description including the drug's other names, drug class, and what it may treat.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Pocket Pharmacist

Descarga archivos de extensión Pocket Pharmacist en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Pocket Pharmacist Pocket Pharmacist
ID fgigbcegdhghooekkdkblahmoecnhign
URL Oficial https://chromewebstore.google.com/detail/pocket-pharmacist/fgigbcegdhghooekkdkblahmoecnhign
Descripción Highlight a drug name on any website to get a description including the drug's other names, drug class, and what it may treat.
Tamaño del Archivo 543 KB
Cantidad de Instalaciones 98
Versión Actual 1.1
Última Actualización 2021-02-16
Fecha de Publicación 2021-02-05
Desarrollador logandeveloper03
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}