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.

Vad är Pocket Pharmacist?

Pocket Pharmacist är en Chrome-tillägg utvecklad av logandeveloper03, och dess huvudfunktion är "Highlight a drug name on any website to get a description including the drug's other names, drug class, and what it may treat.".

Tilläggsskärmbilder

screenshot

Ladda ner Pocket Pharmacist-förlängningens CRX-fil

Ladda ner Pocket Pharmacist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Pocket Pharmacist Pocket Pharmacist
ID fgigbcegdhghooekkdkblahmoecnhign
Officiell webbadress https://chromewebstore.google.com/detail/pocket-pharmacist/fgigbcegdhghooekkdkblahmoecnhign
Beskrivning Highlight a drug name on any website to get a description including the drug's other names, drug class, and what it may treat.
Filstorlek 543 KB
Antal Installationer 98
Aktuell Version 1.1
Senast Uppdaterad 2021-02-16
Publiceringsdatum 2021-02-05
Utvecklare logandeveloper03
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}