tor-browser

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

file_beforeunload_stop.html (145B)


      1 <body>
      2  <p>I will ask not to be closed.</p>
      3  <script>
      4    window.onbeforeunload = function() {
      5      return "true";
      6    };
      7  </script>
      8 </body>