tor-browser

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

354611-1.html (302B)


      1 <html>
      2 <head>
      3 <script>
      4 
      5 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
      6 
      7 function boom()
      8 {
      9  var z = document.createElementNS(XUL_NS, "window");
     10  document.body.appendChild(z);
     11  z.setAttribute("hidechrome", "true");
     12 }
     13 
     14 </script>
     15 
     16 <body onload="boom();">
     17 
     18 </body>
     19 
     20 </html>