I used the below in a Manifest v3 to create a Chrome extension.
"background": {
"service_worker": "js/background.js",
"type":"module"
},
Can I put multiple background.js files in a manifest?
I did not found any information about this. Thanks for help!
You can not specify multiple background service workds directly in the background fied of the manifest.
To use multiple scripts you, should import them nto your main background service work
for example, if you have additional scripts use as