Hot Virtual Keyboard Extension

Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.

Что такое Hot Virtual Keyboard Extension?

Hot Virtual Keyboard Extension - это расширение Chrome, разработанное https://hotvirtualkeyboard.com, и его основная функция - "Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Hot Virtual Keyboard Extension

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

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

                        This extension brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard has to be installed and running: https://hotvirtualkeyboard.com/

The first time you try the extension, reload any previously open pages before you try out the new functionality on them.

System requirements:
Microsoft Windows 7, Windows 8, Windows 10 and Windows 11.                    

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

Название Hot Virtual Keyboard Extension Hot Virtual Keyboard Extension
ID bdejgojmfhngmomodldpdppfbhoajadl
Официальный URL https://chromewebstore.google.com/detail/hot-virtual-keyboard-exte/bdejgojmfhngmomodldpdppfbhoajadl
Описание Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.
Размер файла 24.26 KB
Количество установок 8,424
Текущая Версия 5.1
Последнее Обновление 2024-03-02
Дата публикации 2020-06-05
Рейтинг 2.43/5 Всего 102 оценок
Разработчик https://hotvirtualkeyboard.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://hotvirtualkeyboard.com/
URL страницы помощи https://hotvirtualkeyboard.com/help/
URL страницы политики конфиденциальности https://hotvirtualkeyboard.com/privacy
Поддерживаемые языки en
manifest.json
{
    "name": "Hot Virtual Keyboard Extension",
    "description": "Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.",
    "version": "5.1",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "hvkeyboard.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "256": "icon256.png"
    },
    "incognito": "split",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3
}