tor-browser

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

service_worker.js (195B)


      1 self.addEventListener('fetch', (e) => {
      2  const url = new URL(e.request.url);
      3  if (url.pathname.match('controlled-endpoint.py')) {
      4    e.respondWith(new Response('FROM_SERVICE_WORKER'));
      5  }
      6 });