Hot Virtual Keyboard Extension
Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.
O que é Hot Virtual Keyboard Extension?
Hot Virtual Keyboard Extension é uma extensão do Chrome desenvolvida por https://hotvirtualkeyboard.com, e sua principal característica é "Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hot Virtual Keyboard Extension
Baixe arquivos de extensão Hot Virtual Keyboard Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard has to be installed and running: https://hotvirtualkeyboard.com/ The first time you try the extension, reload any previously open pages before you try out the new functionality on them. System requirements: Microsoft Windows 7, Windows 8, Windows 10 and Windows 11.
Informações Básicas da Extensão
Nome | Hot Virtual Keyboard Extension |
ID | bdejgojmfhngmomodldpdppfbhoajadl |
URL Oficial | https://chromewebstore.google.com/detail/hot-virtual-keyboard-exte/bdejgojmfhngmomodldpdppfbhoajadl |
Descrição | Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running. |
Tamanho do Arquivo | 24.26 KB |
Contagem de Instalações | 8,424 |
Versão Atual | 5.1 |
Última Atualização | 2024-03-02 |
Data de Publicação | 2020-06-05 |
Classificação | 2.43/5 Total de 102 Avaliações |
Desenvolvedor | https://hotvirtualkeyboard.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://hotvirtualkeyboard.com/ |
URL da Página de Ajuda | https://hotvirtualkeyboard.com/help/ |
URL da Página de Política de Privacidade | https://hotvirtualkeyboard.com/privacy |
Idiomas Suportados | en |
manifest.json | |
{ "name": "Hot Virtual Keyboard Extension", "description": "Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.", "version": "5.1", "content_scripts": [ { "all_frames": true, "js": [ "hvkeyboard.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "256": "icon256.png" }, "incognito": "split", "permissions": [ "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3 } |