20 lines
No EOL
374 B
HTML
20 lines
No EOL
374 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
|
|
<title>Firefox Send</title>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="output">output</div>
|
|
<script>
|
|
window.addEventListener("message", (event) => {
|
|
fetch(event.data).then(res => res.text()).then(txt => {
|
|
document.getElementById('output').textContent = "GOT MESSAGE" + txt;
|
|
});
|
|
}, false);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|