tor-browser

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

iframe_service_worker.js (269B)


      1 "use strict";
      2 
      3 self.onfetch = function (event) {
      4  if (event.request.url.includes("sheet.css")) {
      5    return event.respondWith(new Response("* { color: green; }"));
      6  }
      7  return null;
      8 };
      9 
     10 self.onactivate = function (event) {
     11  event.waitUntil(self.clients.claim());
     12 };