Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script>
'use strict';
window.addEventListener("message", async (event) => {
const response = await fetch(event.data, {credentials: "include"});
event.source.postMessage(response.status, "*");
});
</script>
</body>