199ce36b创建于 2023年6月29日历史提交
export const keepAlive = () => {
  const extRuntime = (globalThis.browser?.runtime ||
    globalThis.chrome?.runtime) as typeof chrome.runtime
  const _keepAlive = () => setInterval(extRuntime.getPlatformInfo, 24_000) // 24 seconds
  extRuntime.onStartup.addListener(_keepAlive)
  _keepAlive()
}