receiver.html 390 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Choose a File</title>
  5. </head>
  6. <body>
  7. <h2>I'm supposed to be an invisible iframe... (you shouldn't see this)</h2>
  8. <script>
  9. let uauthBC = new BroadcastChannel("uauth");
  10. window.addEventListener("message", function(e) {
  11. uauthBC.postMessage(e.data);
  12. window.parent.postMessage("acknowledged", "*");
  13. }, false);
  14. </script>
  15. </body>
  16. </html>