tor-browser

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

include-5.js (255B)


      1 log('include-5 before removing scripts');
      2 var scripts=[].slice.call(document.getElementsByTagName('script'), 3);
      3 for(var i = 0; i < scripts.length; i++) {
      4    var s = scripts[i];
      5    s.parentNode.removeChild(s);
      6 }
      7 log('include-5 after removing scripts');