Skip to content

Instantly share code, notes, and snippets.

@technikhil314
Created April 7, 2021 14:32
Show Gist options
  • Save technikhil314/79c054a4ddbd7bfa9aecf0dca16c2a1e to your computer and use it in GitHub Desktop.
Save technikhil314/79c054a4ddbd7bfa9aecf0dca16c2a1e to your computer and use it in GitHub Desktop.
Unregister all service workers on chrome
// run the following script on chrome://serviceworker-internals/?devtools
const allUnregisterButtons = document.querySelectorAll(".unregister");
for(item of allUnregisterButtons) {
item.click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment