tor-browser

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

fetch-event-test-worker.js (241B)


      1 self.addEventListener('fetch', function(event) {
      2  const request = event.request;
      3  const body =
      4    `method = ${request.method}, ` +
      5    `isReloadNavigation = ${request.isReloadNavigation}`;
      6  event.transitionWhile(new Response(body));
      7 });