tor-browser

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

clients-get-frame.html (217B)


      1 <!DOCTYPE html>
      2 <script>
      3 
      4  fetch("clientId")
      5    .then(function(response) {
      6        return response.text();
      7      })
      8    .then(function(text) {
      9        parent.postMessage({clientId: text}, "*");
     10      });
     11 
     12 </script>