tor-browser

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

unload-reporter.html (168B)


      1 <!DOCTYPE html>
      2 <h1>I'll report to my parent when I'm unloaded</h1>
      3 
      4 <script>
      5  window.onbeforeunload = e => {
      6    parent.postMessage('unloading', '*');
      7  };
      8 </script>