PrivateKeyboardAddon/settings/button.html

18 lines
717 B
HTML
Raw Normal View History

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">
<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>
<button id="toggleSite">Disable Keyboard Privacy</button>
<p id="reloadPage">Refresh the page to apply</p>
2022-02-19 07:04:13 +00:00
2022-02-20 00:45:20 +00:00
<br>
2022-02-20 06:50:15 +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>