tor-browser

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

client-navigate-frame.html (267B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <script>
      4  fetch("clientId")
      5    .then(function(response) {
      6      return response.text();
      7    })
      8    .then(function(text) {
      9      parent.postMessage({id: text}, "*");
     10    });
     11 </script>
     12 <body style="background-color: red;"></body>