tor-browser

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

shownotification-window-iframe.html (210B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <script>
      4  async function showNotification() {
      5    const registration = await navigator.serviceWorker.ready;
      6    await registration.showNotification('foo');
      7  }
      8 </script>