I was exploring using Service Workers, but now every time I serve something up on localhost, I get Service Worker errors on Firefox. How do I remove a service worker?
Asked
Active
Viewed 407 times
0
-
2Possible duplicate of [How do I uninstall a Service Worker?](http://stackoverflow.com/questions/33704791/how-do-i-uninstall-a-service-worker) – Seth Holladay Jan 14 '17 at 02:13
-
Those solutions don't work on Firefox. – Costa Michailidis Feb 02 '17 at 19:51
-
Mozilla's own documentation states that it should work as of Firefox 44. [navigator.serviceWorker](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/serviceWorker), [getRegistrations()](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/getRegistrations), [registration.unregister()](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/unregister) – Seth Holladay Feb 03 '17 at 19:00
-
I had to go to about: debugging and remove from there. That seemed to do the trick. – Costa Michailidis Feb 03 '17 at 23:16