How to import ES6 modules in content script for Chrome Extension
As it’s already mentioned, for background script, it’s good idea to use background.page and use <script type=”module”> to kick your JavaScript. The problem is content script, and injecting <script> tag with type attribute can be a solution. Another approach than injecting script tag is to use dynamic import function. By this approach, you don’t need … Read more