Service Worker TypeError when opening Chrome extension Service Worker TypeError when opening Chrome extension google-chrome google-chrome

Service Worker TypeError when opening Chrome extension


WAVE includes some code in your site, which then makes some request to the WAVE extension itself with an url beginning with chrome-extension://xyz. Your service intercepts this request and wants to make a fetch himself because this request is not cached. But urls with the protocol/request scheme chrome-extension:// are not allowed in service worker.

So you probably don't want to handle these WAVE requests with your service worker. Skip them with something like

if(!event.request.url.startsWith('http')){   //skip request}


** It is because of installed chrome extension**In my case it was wappalyzer


In my case I use chrome and extension the wappalyzer...And I change to read and change site data to "When you click the extension"