tor-browser

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

post-to-opener.html (140B)


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