tor-browser

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

inject-style.js (177B)


      1 document.write("<style>#test1 { display: none; }</style>");
      2 
      3 var s = document.createElement('style');
      4 s.textContent = "#test2 { display: none; }";
      5 document.body.appendChild(s);