Hot Virtual Keyboard Extension
Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.
Vad är Hot Virtual Keyboard Extension?
Hot Virtual Keyboard Extension är en Chrome-tillägg utvecklad av https://hotvirtualkeyboard.com, och dess huvudfunktion är "Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running.".
Tilläggsskärmbilder
Ladda ner Hot Virtual Keyboard Extension-förlängningens CRX-fil
Ladda ner Hot Virtual Keyboard Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Hot Virtual Keyboard Extension |
ID | bdejgojmfhngmomodldpdppfbhoajadl |
Officiell webbadress | https://chromewebstore.google.com/detail/hot-virtual-keyboard-exte/bdejgojmfhngmomodldpdppfbhoajadl |
Beskrivning | Brings up the virtual keyboard when entering text input fields. Hot Virtual Keyboard software has to be installed and running. |
Filstorlek | 24.26 KB |
Antal Installationer | 8,424 |
Aktuell Version | 5.1 |
Senast Uppdaterad | 2024-03-02 |
Publiceringsdatum | 2020-06-05 |
Betyg | 2.43/5 Totalt 102 Betyg |
Utvecklare | https://hotvirtualkeyboard.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://hotvirtualkeyboard.com/ |
Hjälpsida URL | https://hotvirtualkeyboard.com/help/ |
URL till Sekretesspolicy Sidan | https://hotvirtualkeyboard.com/privacy |
Stödda Språk | 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 } |