Skip to content

Instantly share code, notes, and snippets.

@nilovelez
Created December 21, 2024 11:55
Show Gist options
  • Select an option

  • Save nilovelez/c6334d010d58088aaccf4ddd83569dbd to your computer and use it in GitHub Desktop.

Select an option

Save nilovelez/c6334d010d58088aaccf4ddd83569dbd to your computer and use it in GitHub Desktop.
Unregister Service Workers
// Select all buttons with the class 'unregister'
const unregisterButtons = document.querySelectorAll('.unregister');
// Click each button to trigger the 'unregister' action
unregisterButtons.forEach((button) => { button.click(); });
@nilovelez
Copy link
Author

nilovelez commented Dec 21, 2024

Go to chrome://serviceworker-internals/
Open Inspector Console and execute code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment