tor-browser

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

sharedWorker_lifetime.js (112B)


      1 onconnect = function (e) {
      2  setTimeout(function () {
      3    e.ports[0].postMessage("Still alive!");
      4  }, 500);
      5 };