tor-browser

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

post_name_on_load.html (193B)


      1 <!doctype html>
      2 <script>
      3  addEventListener('load', _ => {
      4    let params = new URLSearchParams(window.location.search);
      5    window.opener.postMessage(params.get('name'), '*');
      6  });
      7 </script>