tor-browser

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

WorkerLocation-origin.html (122B)


      1 <script>
      2 const w = new Worker("./WorkerLocation.js");
      3 w.onmessage = e => {
      4  parent.postMessage(e.data, "*");
      5 }
      6 </script>