tor-browser

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

file_openwindow.serviceworker.js (188B)


      1 onnotificationclick = ev => {
      2  ev.waitUntil(
      3    (async () => {
      4      const client = await clients.openWindow("file_openwindow.html");
      5      client.postMessage("HELLO");
      6    })()
      7  );
      8 };