Hi,
I'm trying to convert my extension to manifest v3.
In my current extension, I have 3 scripts files for the background
"background": {
"scripts": [
"constantes.js",
"utils.js",
"background.js"
]
}
How can I do same with manifest v3? Because I want to reuse constantes.js and utils.js. Note, I prefer to avoid concatenating files.
Thank you.
Simon B.