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 to jest Native Virtual On-Screen Keyboard?

Native Virtual On-Screen Keyboard to rozszerzenie Chrome opracowane przez vaverix, a jego główną funkcją jest „Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Native Virtual On-Screen Keyboard

Pobierz pliki rozszerzeń Native Virtual On-Screen Keyboard w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Native Virtual On-Screen Keyboard Native Virtual On-Screen Keyboard
ID jnoclgeeaiidamofdlbnakfgkanggnla
Oficjalny URL https://chrome.google.com/webstore/detail/native-virtual-on-screen/jnoclgeeaiidamofdlbnakfgkanggnla
Opis Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!
Rozmiar pliku 40.25 KB
Liczba instalacji 323
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-09-17
Data Publikacji 2019-09-15
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper vaverix
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
Adres URL Strony Pomocy https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
Obsługiwane Języki 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
}