tor-browser

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

sanitize_worker.js (130B)


      1 onfetch = function (e) {
      2  if (e.request.url.includes("intercept-this")) {
      3    e.respondWith(new Response("intercepted"));
      4  }
      5 };