awacke1's picture
Create clipboard.html
d89175d
raw
history blame contribute delete
607 Bytes
<!DOCTYPE html>
<html>
<head>
<style>
textarea {
width: 100%;
height: 200px;
}
</style>
</head>
<body>
<h1>Clipboard Monitor</h1>
<p>Paste your data in the textarea below:</p>
<textarea id="clipboard-text" oninput="updateClipboard()"></textarea>
<script>
function updateClipboard() {
let textArea = document.getElementById("clipboard-text");
let clipboardData = textArea.value;
window.parent.postMessage({type: "clipboard-update", data: clipboardData}, "*");
}
</script>
</body>
</html>