Chrome Simple Keyboard - A virtual keyboard

A native virtual keyboard based on the simple-keyboard package

Vad är Chrome Simple Keyboard - A virtual keyboard?

Chrome Simple Keyboard - A virtual keyboard är en Chrome-tillägg utvecklad av alex9849, och dess huvudfunktion är "A native virtual keyboard based on the simple-keyboard package".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Chrome Simple Keyboard - A virtual keyboard-förlängningens CRX-fil

Ladda ner Chrome Simple Keyboard - A virtual keyboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Chrome Simple Keyboard - A virtual keyboard Chrome Simple Keyboard - A virtual keyboard
ID cjabmkimbcmhhepelfhjhbhonnapiipj
Officiell webbadress https://chromewebstore.google.com/detail/chrome-simple-keyboard-a/cjabmkimbcmhhepelfhjhbhonnapiipj
Beskrivning A native virtual keyboard based on the simple-keyboard package
Filstorlek 44.6 KB
Antal Installationer 379
Aktuell Version 0.4.6
Senast Uppdaterad 2023-09-13
Publiceringsdatum 2022-07-08
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare alex9849
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/alex9849/chrome-simple-keyboard
Stödda Språk 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"
            ]
        }
    ]
}