self.addEventListener('push', (e) => { const data = e.data.json(); console.log(data); alert(data); self.registration.showNotification("notif received", { body: "received", }); });