Unregister Service Workers

Is there a way to unregister all installed service workers from Chrome with just one click? twitter

Open dev tools on chrome://serviceworker-internals/

$$('.unregister').forEach(b => b.click())

Or for a concise list.

$$('.serviceworker-scope [jscontent=scope') .map(x=>x.innerText).join("\n")