Native Virtual On-Screen Keyboard

Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!

Native Virtual On-Screen Keyboard란 무엇입니까?

Native Virtual On-Screen Keyboard은(는) vaverix에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!"입니다.

확장 프로그램 스크린샷

screenshot

Native Virtual On-Screen Keyboard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Native on-screen keyboard for touch screen devices. What differs it from any other keyboard on WebStore? Well, it sends native javascript events on every keystroke, so it works on any website, with any framework like React, Angular, Vue etc. (works on Spotify website too!)                    

확장 프로그램 기본 정보

이름 Native Virtual On-Screen Keyboard Native Virtual On-Screen Keyboard
ID jnoclgeeaiidamofdlbnakfgkanggnla
공식 URL https://chrome.google.com/webstore/detail/native-virtual-on-screen/jnoclgeeaiidamofdlbnakfgkanggnla
설명 Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!
파일 크기 40.25 KB
설치 횟수 323
현재 버전 1.0
최근 업데이트 2019-09-17
출시 날짜 2019-09-15
평점 5.00/5 총 3 개의 평점
개발자 vaverix
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
도움말 페이지 URL https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Native Virtual On-Screen Keyboard",
    "description": "Native on-screen keyboard for touch\/mobile\/IoT\/Raspberry Pi devices. It works on any website, including those built with React!",
    "version": "1.0",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "keyboard.html",
        "style.css",
        "images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}