As mentioned earlier, service workers are limited to a single domain. The domain is your site's address, such as https://podcast.love2dev.com/. This is a security feature. Limiting a service worker is known as the service worker's scope. This prevents external scripts from doing bad things to your site.
Imagine if your customer also visits your competition's web site, which installs a service worker. Without limits on service worker scope, they could conceivably manipulate your content or spy on you and your customer's private data.
In fact, a third-party script cannot register a service worker from a page on your site. This should keep external scripts and service providers from using service workers in conjunction with your domain.
A service worker is limited to the origin domain, and it is also limited to the folder in which it is physically...