How to debug chrome extension service worker for manifest v3?
I guess you are looking for the internal ServiceWorker (backend page) of your extension and their connections. There are two URLs you should be aware of: chrome://inspect/#service-workers chrome://serviceworker-internals/?devtools You might also want to “debug the debugger” e.g. for breakpoints inside your extension page. 1. Registered ServiceWorker list (normal + internal) chrome://inspect/#service-workers 2. ServiceWorker activity (active … Read more