tor-browser

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

id-member-service-worker.js (239B)


      1 // Some user agents only offer app installation if there is a SW and it handles
      2 // offline requests.
      3 
      4 self.addEventListener("fetch", e => {
      5  e.respondWith(fetch(e.request).catch(_ => {
      6    return new Response('Offline test.');
      7  }));
      8 });