Chrome Simple Keyboard - A virtual keyboard

A native virtual keyboard based on the simple-keyboard package

Chrome Simple Keyboard - A virtual keyboard란 무엇입니까?

Chrome Simple Keyboard - A virtual keyboard은(는) alex9849에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A native virtual keyboard based on the simple-keyboard package"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Chrome Simple Keyboard - A virtual keyboard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a virtual keyboard extension for chromium based browsers. The extension uses native keyboard events and is therefore compatible with modern JavaScript frameworks such as Vue.Js.

When the following classes are present on the input, the plugin will behave differently.
-  `no-keyboard` - do not pop up the keyboard when the input is focused. Instead, a button is shown to open the keyboard manually.


The extension is based on simple-keyboard.                    

확장 프로그램 기본 정보

이름 Chrome Simple Keyboard - A virtual keyboard Chrome Simple Keyboard - A virtual keyboard
ID cjabmkimbcmhhepelfhjhbhonnapiipj
공식 URL https://chromewebstore.google.com/detail/chrome-simple-keyboard-a/cjabmkimbcmhhepelfhjhbhonnapiipj
설명 A native virtual keyboard based on the simple-keyboard package
파일 크기 44.6 KB
설치 횟수 379
현재 버전 0.4.6
최근 업데이트 2023-09-13
출시 날짜 2022-07-08
평점 5.00/5 총 1 개의 평점
개발자 alex9849
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/alex9849/chrome-simple-keyboard
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chrome Simple Keyboard - A virtual keyboard",
    "version": "0.4.6",
    "description": "A native virtual keyboard based on the simple-keyboard package",
    "icons": {
        "128": "icons\/icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "Chrome Simple Keyboard"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}