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文件

下載Chrome Simple Keyboard - A virtual keyboard擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}