tor-browser

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

intercept_nonexistent_file_sw.js (142B)


      1 onfetch = function (e) {
      2  if (e.request.url.match(/this_file_does_not_exist.txt$/)) {
      3    e.respondWith(new Response("intercepted"));
      4  }
      5 };