Chrome Simple Keyboard - A virtual keyboard

A native virtual keyboard based on the simple-keyboard package

Was ist Chrome Simple Keyboard - A virtual keyboard?

Chrome Simple Keyboard - A virtual keyboard ist eine Chrome-Erweiterung, die von alex9849 entwickelt wurde, und ihr Hauptmerkmal ist "A native virtual keyboard based on the simple-keyboard package".

Erweiterungsscreenshots

screenshot
screenshot

Chrome Simple Keyboard - A virtual keyboard-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome Simple Keyboard - A virtual keyboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Chrome Simple Keyboard - A virtual keyboard Chrome Simple Keyboard - A virtual keyboard
ID cjabmkimbcmhhepelfhjhbhonnapiipj
Offizielle URL https://chromewebstore.google.com/detail/chrome-simple-keyboard-a/cjabmkimbcmhhepelfhjhbhonnapiipj
Beschreibung A native virtual keyboard based on the simple-keyboard package
Dateigröße 44.6 KB
Installationsanzahl 379
Aktuelle Version 0.4.6
Letztes Update 2023-09-13
Veröffentlichungsdatum 2022-07-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler alex9849
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/alex9849/chrome-simple-keyboard
Unterstützte Sprachen 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"
            ]
        }
    ]
}