Chrome Simple Keyboard - A virtual keyboard

A native virtual keyboard based on the simple-keyboard package

Cos'è Chrome Simple Keyboard - A virtual keyboard?

Chrome Simple Keyboard - A virtual keyboard è un'estensione di Chrome sviluppata da alex9849, e la sua funzione principale è "A native virtual keyboard based on the simple-keyboard package".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Chrome Simple Keyboard - A virtual keyboard

Scarica i file di estensione Chrome Simple Keyboard - A virtual keyboard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Chrome Simple Keyboard - A virtual keyboard Chrome Simple Keyboard - A virtual keyboard
ID cjabmkimbcmhhepelfhjhbhonnapiipj
URL Ufficiale https://chromewebstore.google.com/detail/chrome-simple-keyboard-a/cjabmkimbcmhhepelfhjhbhonnapiipj
Descrizione A native virtual keyboard based on the simple-keyboard package
Dimensione del File 44.6 KB
Conteggio Installazioni 379
Versione Corrente 0.4.6
Ultimo Aggiornamento 2023-09-13
Data di Pubblicazione 2022-07-08
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore alex9849
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/alex9849/chrome-simple-keyboard
Lingue Supportate 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"
            ]
        }
    ]
}