Subscribe to receive push notifications even when this page is closed
Add this code to any website to enable push notifications:
<!-- Add before closing </body> tag -->
<script src="https://notifywave.cc/push-sdk.js"></script>
<script>
PushService.init({
publicKey: "YOUR_VAPID_PUBLIC_KEY",
subscribeUrl: "https://notifywave.cc/subscribe.php",
serviceWorkerUrl: "https://notifywave.cc/service-worker.js",
debug: true,
onSubscribe: function(sub) {
console.log('Subscribed!', sub);
}
});
</script>