tor-browser

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

frame.html (213B)


      1 <!DOCTYPE html>
      2 <script>
      3  fetch("intercept-this").then(function(r) {
      4    if (!r.ok) {
      5      return "FAIL";
      6    }
      7    return r.text();
      8  }).then(function(body) {
      9    parent.postMessage(body, '*');
     10  });
     11 </script>