Native Virtual On-Screen Keyboard

Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!

Co je Native Virtual On-Screen Keyboard?

Native Virtual On-Screen Keyboard je rozšíření Chrome vyvinuté vaverix, a jeho hlavní funkcí je „Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Native Virtual On-Screen Keyboard

Stáhněte si soubory rozšíření Native Virtual On-Screen Keyboard ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Native on-screen keyboard for touch screen devices. What differs it from any other keyboard on WebStore? Well, it sends native javascript events on every keystroke, so it works on any website, with any framework like React, Angular, Vue etc. (works on Spotify website too!)                    

Základní Informace o Rozšíření

Název Native Virtual On-Screen Keyboard Native Virtual On-Screen Keyboard
ID jnoclgeeaiidamofdlbnakfgkanggnla
Oficiální URL https://chrome.google.com/webstore/detail/native-virtual-on-screen/jnoclgeeaiidamofdlbnakfgkanggnla
Popis Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!
Velikost souboru 40.25 KB
Počet instalací 323
Aktuální Verze 1.0
Poslední Aktualizace 2019-09-17
Datum Vydání 2019-09-15
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář vaverix
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
URL Stránky Nápovědy https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Native Virtual On-Screen Keyboard",
    "description": "Native on-screen keyboard for touch\/mobile\/IoT\/Raspberry Pi devices. It works on any website, including those built with React!",
    "version": "1.0",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "keyboard.html",
        "style.css",
        "images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}