tor-browser

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

inject-script.js (168B)


      1 document.write("<script>log('Pass 1 of 2');</script>");
      2 
      3 var s = document.createElement('script');
      4 s.textContent = "log('Pass 2 of 2');";
      5 document.body.appendChild(s);