I recently started working on a chrome extension project.
I need to consume some third party libraries and I am planning on adding their minified version to my project.
In node.js there is a loading mechanism that allow me to import any package in node_module
without adding that path to the node_module.
I'm trying to mimic this behavior in my extension. My question is how to do it? I've read and investigated plenty in MDN and many other site but the only reference I found for this use case was in Typescript and in Webpack, which I cannot use in this project.