Created
April 7, 2021 14:32
-
-
Save technikhil314/79c054a4ddbd7bfa9aecf0dca16c2a1e to your computer and use it in GitHub Desktop.
Unregister all service workers on chrome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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