tor-browser

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

remote-executor.html (399B)


      1 <!DOCTYPE html>
      2 <html>
      3 <meta charset="utf-8">
      4 <body>
      5 </body>
      6 <script src="./dispatcher.js"
      7        crossorigin
      8        integrity="sha256-daCATx8B9i1s6ixqZvCGcGQOv3a+VMoor6aS9UNUoiY=">
      9 </script>
     10 <script>
     11  const params = new URLSearchParams(window.location.search);
     12  const uuid = params.get('uuid');
     13  const executor = new Executor(uuid);  // `execute()` is called in constructor.
     14 </script>
     15 </html>