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은(는) https://hotvirtualkeyboard.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Hot Virtual Keyboard Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}