tor-browser

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

intercepted_channel_process_swap_worker.js (139B)


      1 onfetch = e => {
      2  const url = new URL(e.request.url).searchParams.get("respondWith");
      3 
      4  if (url) {
      5    e.respondWith(fetch(url));
      6  }
      7 };