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