I'm currently building a chrome extension that allows users to set an alarm that will notify them at any given time during the day.
However, manifest V3 limiting service workers to around 5 minutes of active time, how can I prevent it from going inactive?
I'm using chrome alarms and the module is working but only until that 5 minutes limit is reached. Is there a way to use setTimeout for example to simply log to the console which would keep the SW active?