tor-browser

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

url-origin.html (156B)


      1 <!DOCTYPE html>
      2 <script>
      3 const blob = new Blob(["Test Blob"]);
      4 const url = URL.createObjectURL(blob);
      5 window.parent.postMessage({url: url}, '*');
      6 </script>