Files
UT-Registration-Plus/src/pages/background/events/onServiceWorkerAlive.ts
2024-01-24 19:40:30 -06:00

10 lines
262 B
TypeScript

import { openDebugTab } from '../util/openDebugTab';
/**
* Called whenever the background service worker comes alive
* (usually around 30 seconds to 5 minutes after it was last alive)
*/
export default function onServiceWorkerAlive() {
openDebugTab();
}