blob: 19a034a23dc51c3c8b437b928e9afa75bb61111b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<meta charset="utf-8" />
<title>Hello, world!</title>
<meta name="viewport" content="initial-scale=1.0" />
</head>
<body style="height: 100%">
<p>Hello, world!</p>
<script>
document.body.addEventListener("click", () => {
navigator.clipboard
.readText()
.then(() => {
window.alert("allow");
})
.catch(() => {
window.alert("deny");
});
});
</script>
</body>
</html>
|