tor-browser

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

service-worker.js (184B)


      1 self.addEventListener('fetch', function(event) {
      2  event.respondWith(new Response(
      3    '<body>Generated by service worker</body>',
      4    {headers:[['content-type', 'text/html']]}));
      5 });