PrivateKeyboardAddon/settings/button.html

17 lines
627 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
<textarea id="keyBuffer" cols="20" rows="10" placeholder="Type in this buffer then click where you want to send it on the page"></textarea>
2021-08-10 19:40:14 +00:00
</body>
</html>