tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

origin.html (205B)


      1 <script>
      2 const bc1 = new BroadcastChannel("ladila"),
      3      bc2 = new BroadcastChannel("ladila");
      4 bc2.onmessage = e => {
      5  parent.postMessage(e.origin, "*");
      6 }
      7 bc1.postMessage("does not matter");
      8 </script>