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!

Cos'è Native Virtual On-Screen Keyboard?

Native Virtual On-Screen Keyboard è un'estensione di Chrome sviluppata da vaverix, e la sua funzione principale è "Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Native Virtual On-Screen Keyboard

Scarica i file di estensione Native Virtual On-Screen 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

                        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!)                    

Informazioni di Base sull'Estensione

Nome Native Virtual On-Screen Keyboard Native Virtual On-Screen Keyboard
ID jnoclgeeaiidamofdlbnakfgkanggnla
URL Ufficiale https://chrome.google.com/webstore/detail/native-virtual-on-screen/jnoclgeeaiidamofdlbnakfgkanggnla
Descrizione Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!
Dimensione del File 40.25 KB
Conteggio Installazioni 323
Versione Corrente 1.0
Ultimo Aggiornamento 2019-09-17
Data di Pubblicazione 2019-09-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore vaverix
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
URL della Pagina di Aiuto https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
Lingue Supportate 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
}