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!

Native Virtual On-Screen Keyboardとは何ですか?

Native Virtual On-Screen Keyboardはvaverixによって開発されたChromeの拡張機能で、その主な機能は「Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!」です。

拡張機能のスクリーンショット

screenshot

Native Virtual On-Screen Keyboard拡張機能のCRXファイルをダウンロード

Native Virtual On-Screen Keyboard拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Native Virtual On-Screen Keyboard Native Virtual On-Screen Keyboard
ID jnoclgeeaiidamofdlbnakfgkanggnla
公式URL https://chrome.google.com/webstore/detail/native-virtual-on-screen/jnoclgeeaiidamofdlbnakfgkanggnla
説明 Native on-screen keyboard for touch/mobile/IoT/Raspberry Pi devices. It works on any website, including those built with React!
ファイルサイズ 40.25 KB
インストール数 323
現在のバージョン 1.0
最終更新日 2019-09-17
公開日 2019-09-15
評価 5.00/5 合計 3 レビュー
開発者 vaverix
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
ヘルプページのURL https://github.com/vaverix/Native-Virtual-Keyboard-chrome-extension
対応言語 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
}