Source code
Revision control
Copy as Markdown
Other Tools
<script>
const params = new URLSearchParams(window.location.search);
const bc = new BroadcastChannel(params.get("token"));
bc.postMessage({ msg: "ready" });
</script>
<script>
const params = new URLSearchParams(window.location.search);
const bc = new BroadcastChannel(params.get("token"));
bc.postMessage({ msg: "ready" });
</script>