Hey,
I'm leveraging the `chrome.scripting.executeScript` API to inject my code dynamically into pages that potentially may be served with strict CSP rules. And while that works great, with the recent push to ESM only builds some prominent libraries are shipping ESM-only builds now.
Meaning, you have to inject a script that's an ESM module, but there is no way to to specify that's a module and subsequently you get the following error message:
Uncaught SyntaxError: Cannot use import statement outside a module
So I guess my question is, is that even on the roadmap for the `scripting` API or maybe I am missing some other new API that might help with this?
Thanks