tor-browser

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

post-to-parent.html (186B)


      1 <script>
      2 const ident = new URL(location).searchParams.get("ident"),
      3      post = () => parent.postMessage({ name: window.name, ident }, "*");
      4 onmessage = () => post();
      5 post();
      6 </script>