Chrome Simple Keyboard - A virtual keyboard

A native virtual keyboard based on the simple-keyboard package

Apa itu Chrome Simple Keyboard - A virtual keyboard?

Chrome Simple Keyboard - A virtual keyboard adalah ekstensi Chrome yang dikembangkan oleh alex9849, dan fitur utamanya adalah "A native virtual keyboard based on the simple-keyboard package".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Chrome Simple Keyboard - A virtual keyboard

Unduh file ekstensi Chrome Simple Keyboard - A virtual keyboard dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Chrome Simple Keyboard - A virtual keyboard Chrome Simple Keyboard - A virtual keyboard
ID cjabmkimbcmhhepelfhjhbhonnapiipj
URL Resmi https://chromewebstore.google.com/detail/chrome-simple-keyboard-a/cjabmkimbcmhhepelfhjhbhonnapiipj
Deskripsi A native virtual keyboard based on the simple-keyboard package
Ukuran File 44.6 KB
Jumlah Instalasi 379
Versi Saat Ini 0.4.6
Terakhir Diperbarui 2023-09-13
Tanggal Publikasi 2022-07-08
Penilaian 5.00/5 Total 1 Penilaian
Pengembang alex9849
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/alex9849/chrome-simple-keyboard
Bahasa yang Didukung 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"
            ]
        }
    ]
}