File size: 607 Bytes
d89175d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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>