tor-browser

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

navigate.html (298B)


      1 <!DOCTYPE HTML>
      2 <script>
      3  var bc = new BroadcastChannel("navigate");
      4  bc.onmessage = (event) => {
      5    if (event.data.command == "navigate") {
      6      window.location = event.data.location;
      7      bc.close();
      8    }
      9  }
     10  window.onload = () => {
     11    bc.postMessage({command: "loaded"});
     12  }
     13 </script>