So I've been trying to debug / read console.logs from background scripts when using manifest v3 but it never fires any log. It works well in manifest v2 though.
I have set the persmission and host_permission as well changed my background to service_work in manifest but nothing really happens:
"background": { "service_worker": "scripts/background.js" },
My Qyestion is, is it currently possible to use manifest v3 on iOS safari web extension?
Some Notes: Reading this page: https://developer.apple.com/documentation/safariservices/safari_web_extensions/assessing_your_safari_web_extension_s_browser_compatibility It says:
"background: In iOS, you must set the persistent attribute to false. With manifest version 3, all background pages are nonpersistent."
So I'm guessing it is somehow possible to use right?