Hi, I would like be able to import modules while debugging my extension's background service worker process from the "Inspect views" link on chrome://extensions
The thing is, while static import works in the extension during regular operation, it errors out when inspecting the service worker with "Cannot use import statement outside a module".
Dynamic import() errors out with "import() is disallowed on ServiceWorkerGlobalScope by the HTML specification"
importScripts() errors out with "Failed to execute 'importScripts' on 'WorkerGlobalScope': Module scripts don't support importScripts()."
The relevant portion of the extension's manifest:
```
"background": {
"service_worker": "js/background.js",
"type": "module"
},
```
What am I missing here? Thank you for any help!