2021-08-10 19:40:14 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< title > Private Keyboard< / title >
< link rel = "stylesheet" href = "./button.css" >
2022-05-09 22:17:31 +00:00
< script src = "./unicodemapping.js" > < / script >
2021-08-10 19:40:14 +00:00
< script src = "./button.js" defer > < / script >
2022-02-19 07:04:13 +00:00
< script src = "./keybuffer2.js" defer > < / script >
2021-08-10 19:40:14 +00:00
< / head >
< body >
< header id = "siteDomain" > < / header >
2022-02-21 00:17:10 +00:00
< button id = "toggleSite" > Disable Slow Typing< / button >
2021-08-10 19:40:14 +00:00
< p id = "reloadPage" > Refresh the page to apply< / p >
2022-02-19 07:04:13 +00:00
2022-02-21 00:17:10 +00:00
< br >
2022-02-20 00:45:20 +00:00
< br >
2022-02-21 01:13:26 +00:00
< textarea tabindex = "0" id = "keyBuffer" cols = "20" rows = "10" placeholder = "Text typed here will be sent to active input/textarea elements. Breaks on many sites, but is faster than typing directly on the page." > < / textarea >
2021-08-10 19:40:14 +00:00
< / body >
< / html >