tor-browser

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

post-to-opener.html (155B)


      1 <script>
      2  if (window.opener) {
      3    window.opener.postMessage({
      4      "name": window.name,
      5      "isTop": window.top === window
      6    }, "*");
      7  }
      8 </script>