Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<script>
let chan = new BroadcastChannel("close_noopener_beforeunload" + location.search);
onload = function() { window.close(); };
onbeforeunload = function() {
chan.postMessage({ name: "beforeunload", history: history.length });
}
</script>