Source code
Revision control
Copy as Markdown
Other Tools
<script>
const ident = new URL(location).searchParams.get("ident"),
post = () => parent.postMessage({ name: window.name, ident }, "*");
onmessage = () => post();
post();
</script>