tor-browser

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

navigate.html (233B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Navigate</title>
      4 <body></body>
      5 <script>
      6  const window_url = new URL(window.location.href);
      7  targetUrl = window_url.searchParams.get('url');
      8  window.location.href = targetUrl;
      9 </script>