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!

Wat is Native Virtual On-Screen Keyboard?

Native Virtual On-Screen Keyboard is een Chrome-extensie ontwikkeld door vaverix, en de belangrijkste functie is "Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Native Virtual On-Screen Keyboard

Download Native Virtual On-Screen Keyboard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Native Virtual On-Screen Keyboard Native Virtual On-Screen Keyboard
ID jnoclgeeaiidamofdlbnakfgkanggnla
Officiële URL https://chrome.google.com/webstore/detail/native-virtual-on-screen/jnoclgeeaiidamofdlbnakfgkanggnla
Beschrijving Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!
Bestandsgrootte 40.25 KB
Aantal Installaties 323
Huidige Versie 1.0
Laatst Bijgewerkt 2019-09-17
Publicatiedatum 2019-09-15
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar vaverix
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
Help Pagina-URL https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
Ondersteunde Talen 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
}