tor-browser

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

cookie_test.js (347B)


      1 self.addEventListener("fetch", function (event) {
      2  if (event.request.url.includes("synth.html")) {
      3    var body =
      4      "<script>" +
      5      'window.parent.postMessage({status: "done", cookie: document.cookie}, "*");' +
      6      "</script>";
      7    event.respondWith(
      8      new Response(body, { headers: { "Content-Type": "text/html" } })
      9    );
     10  }
     11 });