PatientText

While viewing medical records or test results, click the PatientText icon to replace medical abbreviations with their expanded forms

Что такое PatientText?

PatientText - это расширение Chrome, разработанное Unknown, и его основная функция - "While viewing medical records or test results, click the PatientText icon to replace medical abbreviations with their expanded forms".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения PatientText

Скачайте файлы расширений PatientText в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Medical records and abbreviations can be daunting. This extension translates arcane medical abbreviations into plain "patient" text. This extension can overlay your online medical records or be used on any page that has a confusing amount of medical shorthand. The abbreviations are replaced with what they stand for surrounded by brackets.  

Created by Ruben Schuckit, Halley Cummings, and Evan Satinsky                    

Основная информация о расширении

Название PatientText PatientText
ID koehfflekkicnmaphnhnagdoanicpbdp
Официальный URL https://chromewebstore.google.com/detail/patienttext/koehfflekkicnmaphnhnagdoanicpbdp
Описание While viewing medical records or test results, click the PatientText icon to replace medical abbreviations with their expanded forms
Размер файла 28.18 KB
Количество установок 135
Текущая Версия 1.0
Последнее Обновление 2016-11-06
Дата публикации 2016-11-06
Рейтинг 4.67/5 Всего 6 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/rubenschuckit/archhacks-16
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PatientText",
    "description": "While viewing medical records or test results, click the PatientText icon to replace medical abbreviations with their expanded forms",
    "version": "1.0",
    "short_name": "PatientText",
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "myscript.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Translate medical abbreviations to simple text",
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        "termlist.txt"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}